aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2022-03-01 16:21:10 +0200
committerArnold D. Robbins <arnold@skeeve.com>2022-03-01 16:21:10 +0200
commit319e10d7a56b9a99788a869a5ae3890ae6205cbc (patch)
tree09923b0f9541dc1e53a58a4d5e8a7170007be5de
parentfc1410099d6ccbb72adb54ecffd0711348706ca4 (diff)
downloadegawk-319e10d7a56b9a99788a869a5ae3890ae6205cbc.tar.gz
egawk-319e10d7a56b9a99788a869a5ae3890ae6205cbc.tar.bz2
egawk-319e10d7a56b9a99788a869a5ae3890ae6205cbc.zip
Typo fix in the manual.
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/gawk.info2
-rw-r--r--doc/gawk.texi2
-rw-r--r--doc/gawktexi.in2
4 files changed, 8 insertions, 3 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 4aaad6c5..6e703394 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2022-03-01 Arnold D. Robbins <arnold@skeeve.com>
+
+ * gawktexi.in: Typo fix. Thanks to Antonio Columbo for pointing
+ it out.
+
2022-02-27 Arnold D. Robbins <arnold@skeeve.com>
* gawktexi.in (Array Sorting Functions): Add a note to be careful
diff --git a/doc/gawk.info b/doc/gawk.info
index 77bdc99f..516053f6 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -21484,7 +21484,7 @@ both values to lowercase in order to compare them ignoring case.
-| A a B b c C D d e E F f g G H h i I J j k K l L M m
-| n N O o p P Q q r R S s t T u U V v w W X x y Y z Z
- NOTE: 'Under the hood," 'gawk' uses the C library 'qsort()'
+ NOTE: "Under the hood," 'gawk' uses the C library 'qsort()'
function to manage the sorting. 'qsort()' can call itself
recursively. This means that when you write a comparison function,
you should be careful to avoid the use of global variables and
diff --git a/doc/gawk.texi b/doc/gawk.texi
index bc2768c2..6b9cbbe5 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -30094,7 +30094,7 @@ $ @kbd{gawk -f case_fold_compare.awk}
@end example
@quotation NOTE
-`Under the hood,'' @command{gawk} uses the C library @code{qsort()}
+``Under the hood,'' @command{gawk} uses the C library @code{qsort()}
function to manage the sorting. @code{qsort()} can call itself
recursively. This means that when you write a comparison function,
you should be careful to avoid the use of global variables and arrays;
diff --git a/doc/gawktexi.in b/doc/gawktexi.in
index 93308f52..06d800a2 100644
--- a/doc/gawktexi.in
+++ b/doc/gawktexi.in
@@ -28976,7 +28976,7 @@ $ @kbd{gawk -f case_fold_compare.awk}
@end example
@quotation NOTE
-`Under the hood,'' @command{gawk} uses the C library @code{qsort()}
+``Under the hood,'' @command{gawk} uses the C library @code{qsort()}
function to manage the sorting. @code{qsort()} can call itself
recursively. This means that when you write a comparison function,
you should be careful to avoid the use of global variables and arrays;