diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-04-10 15:08:09 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-04-10 15:08:09 +0300 |
commit | 7ede5088ee35ce5bf1e0dacbe6fa847c38686588 (patch) | |
tree | 489399c799e4e5a861f566756f94466d963e1551 /doc/gawk.texi | |
parent | 547e0e7a21dc3a4c5f0a222980132b496d1de39b (diff) | |
download | egawk-7ede5088ee35ce5bf1e0dacbe6fa847c38686588.tar.gz egawk-7ede5088ee35ce5bf1e0dacbe6fa847c38686588.tar.bz2 egawk-7ede5088ee35ce5bf1e0dacbe6fa847c38686588.zip |
Spellcheck the docs and update.
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 3edb22ef..ca99f017 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -6305,7 +6305,7 @@ or underscores (@samp{_}): @cindex backslash (@code{\}) @subentry @code{\s} operator (@command{gawk}) @cindex @code{\} (backslash) @subentry @code{\s} operator (@command{gawk}) @item \s -Matches any space character as defined by the curent locale. +Matches any space character as defined by the current locale. Think of it as shorthand for @w{@samp{[[:space:]]}}. @@ -23713,8 +23713,8 @@ specification of long options allows an argument to an option @end example Next, we try to find the current option in @code{longopts}. The regular -expression givent to @code{match()}, @code{@w{"(^|,)" thisopt "($|[,:])"}}, -matches this option at the beginninng of @code{longopts}, or at the +expression given to @code{match()}, @code{@w{"(^|,)" thisopt "($|[,:])"}}, +matches this option at the beginning of @code{longopts}, or at the beginning of a subsequent long option (the previous long option would have been terminated by a comma), and, in any case, either at the end of the @code{longopts} string (@samp{$}), or followed by a comma |