diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2022-01-05 21:25:48 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2022-01-05 21:25:48 +0200 |
commit | 71a50ec092b75ce2b2f969892c6cd443d44777a5 (patch) | |
tree | 0c7ca4379ac71bc78391344becfc625e587f4bfd /doc/gawk.texi | |
parent | 8bd2904afb35a19d48552b10d3215ba16fe4ce35 (diff) | |
download | egawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.tar.gz egawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.tar.bz2 egawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.zip |
Small doc update.
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 e956314f..6466698f 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -21954,8 +21954,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, @@ -22267,7 +22267,7 @@ For example, in the following case: @example for (i = 1; i <= n; i++) - @@the_func() + @@the_function() @end example @noindent |