summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-02-13 05:31:35 +0200
committerArnold D. Robbins <arnold@skeeve.com>2017-02-13 05:31:35 +0200
commitaf3bd5ea36908e9d706dd18bfd263e3fd83ee279 (patch)
tree9742067034befb663c8fb7c7e5080392d15bf676
parent6639a575ebfbf3a62fe168c6152429c47d591d75 (diff)
downloadgawk-af3bd5ea36908e9d706dd18bfd263e3fd83ee279.tar.gz
Fix some typos in the doc, update the wordlist.
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/gawk.info72
-rw-r--r--doc/gawk.texi4
-rw-r--r--doc/gawktexi.in4
-rw-r--r--doc/wordlist2
5 files changed, 47 insertions, 40 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index d354afdf..fbcd9367 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2017-02-13 Arnold D. Robbins <arnold@skeeve.com>
+
+ * gawktexi.in: Fix two typos.
+ * wordlist.txt: Update.
+
2017-01-27 Arnold D. Robbins <arnold@skeeve.com>
* gawktexi.in: Update UPDATE-MONTH and copyright years.
diff --git a/doc/gawk.info b/doc/gawk.info
index 432d5fd3..1388b32b 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -28302,7 +28302,7 @@ B.4.2 Please Don't Post Bug Reports to USENET
Please do _not_ try to report bugs in 'gawk' by posting to the
Usenet/Internet newsgroup 'comp.lang.awk'. Although some of the 'gawk'
-developers occasionally read this newgroup, the primary 'gawk'
+developers occasionally read this news group, the primary 'gawk'
maintainer no longer does. Thus it's virtually guaranteed that he will
_not_ see your posting. The steps described here are the only
officially recognized way for reporting bugs. Really.
@@ -28716,7 +28716,7 @@ possible to include them:
boolean!" Instead, use 'strcmp(a, b) == 0'.
* If adding new bit flag values, use explicit hexadecimal
- constants ('0x001', '0x002', '0x004', and son on) instead of
+ constants ('0x001', '0x002', '0x004', and so on) instead of
shifting one left by successive amounts ('(1<<0)', '(1<<1)',
and so on).
@@ -35117,39 +35117,39 @@ Node: VMS Old Gawk1135376
Node: Bugs1135847
Node: Bug address1136510
Node: Usenet1138907
-Node: Maintainers1139682
-Node: Other Versions1141058
-Node: Installation summary1147642
-Node: Notes1148677
-Node: Compatibility Mode1149542
-Node: Additions1150324
-Node: Accessing The Source1151249
-Node: Adding Code1152684
-Node: New Ports1158903
-Node: Derived Files1163391
-Ref: Derived Files-Footnote-11168876
-Ref: Derived Files-Footnote-21168911
-Ref: Derived Files-Footnote-31169509
-Node: Future Extensions1169623
-Node: Implementation Limitations1170281
-Node: Extension Design1171464
-Node: Old Extension Problems1172618
-Ref: Old Extension Problems-Footnote-11174136
-Node: Extension New Mechanism Goals1174193
-Ref: Extension New Mechanism Goals-Footnote-11177557
-Node: Extension Other Design Decisions1177746
-Node: Extension Future Growth1179859
-Node: Old Extension Mechanism1180695
-Node: Notes summary1182458
-Node: Basic Concepts1183640
-Node: Basic High Level1184321
-Ref: figure-general-flow1184603
-Ref: figure-process-flow1185288
-Ref: Basic High Level-Footnote-11188589
-Node: Basic Data Typing1188774
-Node: Glossary1192102
-Node: Copying1224049
-Node: GNU Free Documentation License1261588
-Node: Index1286706
+Node: Maintainers1139684
+Node: Other Versions1141060
+Node: Installation summary1147644
+Node: Notes1148679
+Node: Compatibility Mode1149544
+Node: Additions1150326
+Node: Accessing The Source1151251
+Node: Adding Code1152686
+Node: New Ports1158904
+Node: Derived Files1163392
+Ref: Derived Files-Footnote-11168877
+Ref: Derived Files-Footnote-21168912
+Ref: Derived Files-Footnote-31169510
+Node: Future Extensions1169624
+Node: Implementation Limitations1170282
+Node: Extension Design1171465
+Node: Old Extension Problems1172619
+Ref: Old Extension Problems-Footnote-11174137
+Node: Extension New Mechanism Goals1174194
+Ref: Extension New Mechanism Goals-Footnote-11177558
+Node: Extension Other Design Decisions1177747
+Node: Extension Future Growth1179860
+Node: Old Extension Mechanism1180696
+Node: Notes summary1182459
+Node: Basic Concepts1183641
+Node: Basic High Level1184322
+Ref: figure-general-flow1184604
+Ref: figure-process-flow1185289
+Ref: Basic High Level-Footnote-11188590
+Node: Basic Data Typing1188775
+Node: Glossary1192103
+Node: Copying1224050
+Node: GNU Free Documentation License1261589
+Node: Index1286707

End Tag Table
diff --git a/doc/gawk.texi b/doc/gawk.texi
index ed6551d6..5a5a395d 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -38210,7 +38210,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.
@@ -38760,7 +38760,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
diff --git a/doc/gawktexi.in b/doc/gawktexi.in
index 5596ee6b..ee4c39b9 100644
--- a/doc/gawktexi.in
+++ b/doc/gawktexi.in
@@ -37301,7 +37301,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.
@@ -37851,7 +37851,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
diff --git a/doc/wordlist b/doc/wordlist
index b45cfc56..37e1552c 100644
--- a/doc/wordlist
+++ b/doc/wordlist
@@ -553,6 +553,7 @@ Yawitz
Za
Zaphod
Zaretskii
+Zaretskii's
Zcrtdll
Zeichen
Zeichenkette
@@ -956,6 +957,7 @@ expr
ext
extenders
extern
+ezwinports
fPIC
fabi
fabius