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/gawktexi.in | |
parent | 8bd2904afb35a19d48552b10d3215ba16fe4ce35 (diff) | |
download | egawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.tar.gz egawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.tar.bz2 egawk-71a50ec092b75ce2b2f969892c6cd443d44777a5.zip |
Small doc update.
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 6 |
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 |