diff options
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 |