diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-30 14:51:58 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-10-30 14:51:58 +0200 |
commit | c3fbb3b378be1c6e3802643b73b7bb0d8a295997 (patch) | |
tree | 3aec922f3f8a038fbb53763f1d67aab6607b9d71 /doc/gawk.texi | |
parent | 35855fa516205a3cb302567616915a3ec6fd9c61 (diff) | |
download | egawk-c3fbb3b378be1c6e3802643b73b7bb0d8a295997.tar.gz egawk-c3fbb3b378be1c6e3802643b73b7bb0d8a295997.tar.bz2 egawk-c3fbb3b378be1c6e3802643b73b7bb0d8a295997.zip |
Small doc typo fixes.
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. |