aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2021-11-15 22:09:29 +0200
committerArnold D. Robbins <arnold@skeeve.com>2021-11-15 22:09:29 +0200
commitbd92e255e0f3054d104583a60dae64e98d94c32d (patch)
treedbb40bae378056390fc5aba88281bdf49b8931e6 /doc/gawk.texi
parent0ed67a4f4f043acc08e3982a2648e3082e1f245a (diff)
downloadegawk-bd92e255e0f3054d104583a60dae64e98d94c32d.tar.gz
egawk-bd92e255e0f3054d104583a60dae64e98d94c32d.tar.bz2
egawk-bd92e255e0f3054d104583a60dae64e98d94c32d.zip
Small typo fix in the documentation.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r--doc/gawk.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi
index 317635fa..446f9c3e 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -12054,7 +12054,7 @@ argument to @code{sub()} or @code{gsub()}, they retain their type. Thus,
if you have something like this:
@example
-re = @/don't panic/
+re = @@/don't panic/
sub(/don't/, "do", re)
print typeof(re), re
@end example