diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html
index 9fd7546c..5426d9f2 100644
--- a/doc/html/boost_regex/syntax/perl_syntax.html
+++ b/doc/html/boost_regex/syntax/perl_syntax.html
@@ -578,12 +578,12 @@
-
+ \n
|
-
+ \n
|
diff --git a/doc/syntax_perl.qbk b/doc/syntax_perl.qbk
index 2b8b13fb..0dc63c42 100644
--- a/doc/syntax_perl.qbk
+++ b/doc/syntax_perl.qbk
@@ -299,24 +299,24 @@ The following escape sequences are all synonyms for single characters:
[table
[[Escape][Character]]
-[[[^\a]][[^\a]]]
-[[[^\e]][[^0x1B]]]
-[[[^\f]][[^\f]]]
-[[[^\n]][[^\n]]]
-[[[^\r]][[^\r]]]
-[[[^\t]][[^\t]]]
-[[[^\v]][[^\v]]]
-[[[^\b]][[^\b] (but only inside a character class declaration).]]
-[[[^\cX]][An ASCII escape sequence - the character whose code point is X % 32]]
-[[[^\xdd]][A hexadecimal escape sequence - matches the single character whose
+[[[^\\a]][[^\\a]]]
+[[[^\\e]][[^0x1B]]]
+[[[^\\f]][[^\\f]]]
+[[[^\\n]][[^\\n]]]
+[[[^\\r]][[^\\r]]]
+[[[^\\t]][[^\\t]]]
+[[[^\\v]][[^\\v]]]
+[[[^\\b]][[^\\b] (but only inside a character class declaration).]]
+[[[^\\cX]][An ASCII escape sequence - the character whose code point is X % 32]]
+[[[^\\xdd]][A hexadecimal escape sequence - matches the single character whose
code point is 0xdd.]]
-[[[^\x{dddd}]][A hexadecimal escape sequence - matches the single character whose
+[[[^\\x{dddd}]][A hexadecimal escape sequence - matches the single character whose
code point is 0xdddd.]]
-[[[^\0ddd]][An octal escape sequence - matches the single character whose
+[[[^\\0ddd]][An octal escape sequence - matches the single character whose
code point is 0ddd.]]
-[[[^\N{name}]][Matches the single character which has the
+[[[^\\N{name}]][Matches the single character which has the
[link boost_regex.syntax.collating_names symbolic name] /name/.
- For example [^\N{newline}] matches the single character \\n.]]
+ For example [^\\N{newline}] matches the single character \\n.]]
]
[h5 "Single character" character classes:]