aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2022-01-05 21:39:18 +0200
committerArnold D. Robbins <arnold@skeeve.com>2022-01-05 21:39:18 +0200
commit8cde2e44a252ac2d80ec3f539d9c2157e8aea33e (patch)
tree66f4829c40c7b5bce3c530e9b91e9985afcc898b /doc/gawk.texi
parentb52237743955ece2c890aeb0959c03e70e3175e3 (diff)
parent7388d79e02299193e991b6714c3b3c5314191154 (diff)
downloadegawk-8cde2e44a252ac2d80ec3f539d9c2157e8aea33e.tar.gz
egawk-8cde2e44a252ac2d80ec3f539d9c2157e8aea33e.tar.bz2
egawk-8cde2e44a252ac2d80ec3f539d9c2157e8aea33e.zip
Merge branch 'master' into feature/readall
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 cb7ad4c3..7fb6a570 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