diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2022-01-05 21:29:47 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2022-01-05 21:29:47 +0200 |
commit | 0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd (patch) | |
tree | afc0ffb888de22ece1b07213c24746ed3633e81b /doc/gawktexi.in | |
parent | aa58c798bed920b6051c4459488195df2b76aaf4 (diff) | |
parent | 71a50ec092b75ce2b2f969892c6cd443d44777a5 (diff) | |
download | egawk-0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd.tar.gz egawk-0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd.tar.bz2 egawk-0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd.zip |
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index f3720f1d..2a9321bc 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -20897,8 +20897,8 @@ a closing parenthesis, with the addition of a leading @samp{@@} character: @example -the_func = "sum" -result = @@the_func() # calls the sum() function +the_function = "sum" +result = @@the_function() # calls the sum() function @end example Here is a full program that processes the previously shown data, @@ -21210,7 +21210,7 @@ For example, in the following case: @example for (i = 1; i <= n; i++) - @@the_func() + @@the_function() @end example @noindent |