diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-30 14:52:27 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-30 14:52:27 +0200 |
commit | efdaab840d12c04458291a7618d74347a5a7c084 (patch) | |
tree | c30050de751fbd110cfb0cb355cb4960e0eaa21e /doc/gawk.texi | |
parent | 6895ebddd274d1c9470e6e8b3191f206dddc4e77 (diff) | |
parent | c3fbb3b378be1c6e3802643b73b7bb0d8a295997 (diff) | |
download | egawk-efdaab840d12c04458291a7618d74347a5a7c084.tar.gz egawk-efdaab840d12c04458291a7618d74347a5a7c084.tar.bz2 egawk-efdaab840d12c04458291a7618d74347a5a7c084.zip |
Merge branch 'gawk-4.2-stable' into update-dfa
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 ad8de261..df46d3a1 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -17546,7 +17546,7 @@ lets you test if an array element is itself an array: @example for (i in array) @{ - if (isarray(array[i]) @{ + if (isarray(array[i])) @{ for (j in array[i]) @{ print array[i][j] @} @@ -40578,8 +40578,8 @@ Usenet/Internet newsgroup @code{comp.lang.awk}. Although some of the @command{gawk} maintainer no longer does. Thus it's virtually guaranteed that he will @emph{not} see your posting. -Similarly, posting bug reports or questions in web forums, such -as @uref{https://stackoverflow.com/, Stack Overflow} may get you +Similarly, posting bug reports or questions in web forums (such +as @uref{https://stackoverflow.com/, Stack Overflow}) may get you an answser, but it won't be from the @command{gawk} maintainers, who do not spend their time in web forums. The steps described here are the only officially recognized way for reporting bugs. Really. |