aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2022-01-05 21:29:47 +0200
committerArnold D. Robbins <arnold@skeeve.com>2022-01-05 21:29:47 +0200
commit0e8b44d33b8de608e35e6a649fe84ad9b7c7fffd (patch)
treeafc0ffb888de22ece1b07213c24746ed3633e81b /doc/gawk.texi
parentaa58c798bed920b6051c4459488195df2b76aaf4 (diff)
parent71a50ec092b75ce2b2f969892c6cd443d44777a5 (diff)
downloadegawk-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.texi6
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