aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
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."}).