diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-02-13 06:21:40 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-02-13 06:21:40 +0200 |
commit | df801a207996689d3ab65c0db9387413b5fbad1d (patch) | |
tree | 529fae7c71c03acdc6fab9bf382a058353c16798 /doc/gawk.texi | |
parent | 125c0cc16af6d57fa6b7fa19420e3e957f4e85ac (diff) | |
parent | eb8d0c64228657bad4ef2e2fd732eeed937f3af1 (diff) | |
download | egawk-df801a207996689d3ab65c0db9387413b5fbad1d.tar.gz egawk-df801a207996689d3ab65c0db9387413b5fbad1d.tar.bz2 egawk-df801a207996689d3ab65c0db9387413b5fbad1d.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 5def1f9b..220dfb86 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -32957,12 +32957,12 @@ Set @code{min_required_args} to the minimum required. Set @code{max_expected_args} to zero and set @code{suppress_lint} to @code{awk_true}. -@item A minium number of arguments is required, a maximum number is expected +@item A minimum number of arguments is required, a maximum number is expected Set @code{min_required_args} to the minimum required. Set @code{max_expected_args} to the maximum expected. Set @code{suppress_lint} to @code{awk_false}. -@item A minum number of arguments is required, and no more than a maximum is allowed +@item A minimum number of arguments is required, and no more than a maximum is allowed Set @code{min_required_args} to the minimum required. Set @code{max_expected_args} to the maximum expected. Set @code{suppress_lint} to @code{awk_false}. @@ -39398,7 +39398,7 @@ It's like sports talk radio---you feel smarter for not having read it. @cindex @code{comp.lang.awk} newsgroup Please do @emph{not} try to report bugs in @command{gawk} by posting to the Usenet/Internet newsgroup @code{comp.lang.awk}. Although some of the -@command{gawk} developers occasionally read this newgroup, the primary +@command{gawk} developers occasionally read this news group, the primary @command{gawk} maintainer no longer does. Thus it's virtually guaranteed that he will @emph{not} see your posting. The steps described here are the only officially recognized way for reporting bugs. Really. @@ -39948,7 +39948,7 @@ Instead, use @samp{strcmp(a, b) == 0}. @item If adding new bit flag values, use explicit hexadecimal constants -(@code{0x001}, @code{0x002}, @code{0x004}, and son on) instead of +(@code{0x001}, @code{0x002}, @code{0x004}, and so on) instead of shifting one left by successive amounts (@samp{(1<<0)}, @samp{(1<<1)}, and so on). @end itemize |