diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-02-13 06:22:09 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-02-13 06:22:09 +0200 |
commit | f5870138fe92a9abb5c4407a77c8ac782936173e (patch) | |
tree | 47dce40af5a417c05a71c5e001134268042f7ba2 /doc/gawk.texi | |
parent | 8983808f8767f1011667437ea7452ffe5fd26afd (diff) | |
parent | eb8d0c64228657bad4ef2e2fd732eeed937f3af1 (diff) | |
download | egawk-f5870138fe92a9abb5c4407a77c8ac782936173e.tar.gz egawk-f5870138fe92a9abb5c4407a77c8ac782936173e.tar.bz2 egawk-f5870138fe92a9abb5c4407a77c8ac782936173e.zip |
Merge branch 'master' into feature/stringfix
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 |