aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawktexi.in
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/gawktexi.in
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/gawktexi.in')
-rw-r--r--doc/gawktexi.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in
index 97d21f04..f8c164e9 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