aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-01-19 21:04:27 +0200
committerArnold D. Robbins <arnold@skeeve.com>2020-01-19 21:04:27 +0200
commit6105da2ea4838fe1de8241b1b42d190b48d2fbab (patch)
treefe43c03642221a1289858c96c7c0a71b27da3d74 /doc/gawk.texi
parent9213378d0e71bdfe4a64daccb210913fdfca9bf6 (diff)
downloadegawk-6105da2ea4838fe1de8241b1b42d190b48d2fbab.tar.gz
egawk-6105da2ea4838fe1de8241b1b42d190b48d2fbab.tar.bz2
egawk-6105da2ea4838fe1de8241b1b42d190b48d2fbab.zip
Small doc improvement.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r--doc/gawk.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi
index 51bb1d53..5e344e52 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -5425,7 +5425,7 @@ are processed.
@cindex @code{\} (backslash) @subentry @code{\/} escape sequence
@cindex backslash (@code{\}) @subentry @code{\/} escape sequence
@item \/
-A literal slash (necessary for regexp constants only).
+A literal slash (should be used for regexp constants only).
This sequence is used when you want to write a regexp
constant that contains a slash
(such as @code{/.*:\/home\/[[:alnum:]]+:.*/}; the @samp{[[:alnum:]]}
@@ -5437,7 +5437,7 @@ in order to tell @command{awk} to keep processing the rest of the regexp.
@cindex @code{\} (backslash) @subentry @code{\"} escape sequence
@cindex backslash (@code{\}) @subentry @code{\"} escape sequence
@item \"
-A literal double quote (necessary for string constants only).
+A literal double quote (should be used for string constants only).
This sequence is used when you want to write a string
constant that contains a double quote
(such as @code{"He said \"hi!\" to her."}).