aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawktexi.in
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2022-01-05 21:25:48 +0200
committerArnold D. Robbins <arnold@skeeve.com>2022-01-05 21:25:48 +0200
commit71a50ec092b75ce2b2f969892c6cd443d44777a5 (patch)
tree0c7ca4379ac71bc78391344becfc625e587f4bfd /doc/gawktexi.in
parent8bd2904afb35a19d48552b10d3215ba16fe4ce35 (diff)
downloadegawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.tar.gz
egawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.tar.bz2
egawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.zip
Small doc update.
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 63c853cc..283cb967 100644
--- a/doc/gawktexi.in
+++ b/doc/gawktexi.in
@@ -20866,8 +20866,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,
@@ -21179,7 +21179,7 @@ For example, in the following case:
@example
for (i = 1; i <= n; i++)
- @@the_func()
+ @@the_function()
@end example
@noindent