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/gawk.texi | |
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/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index d476b74c..730208a6 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -21985,8 +21985,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, @@ -22298,7 +22298,7 @@ For example, in the following case: @example for (i = 1; i <= n; i++) - @@the_func() + @@the_function() @end example @noindent |