diff --git a/doc/src/sgml/json.sgml b/doc/src/sgml/json.sgml
index 87665dbe178..e00e11bff7b 100644
--- a/doc/src/sgml/json.sgml
+++ b/doc/src/sgml/json.sgml
@@ -695,21 +695,20 @@ SELECT jdoc->'guid', jdoc->'name' FROM api WHERE jdoc @@ '$.tags[*] == "qui"';
In particular, the way to write a double quote within an embedded string
literal is \", and to write a backslash itself, you
must write \\. Other special backslash sequences
- include those recognized in JSON strings:
+ include those recognized in JavaScript strings:
\b,
\f,
\n,
\r,
\t,
\v
- for various ASCII control characters, and
- \uNNNN for a Unicode
- character identified by its 4-hex-digit code point. The backslash
- syntax also includes two cases not allowed by JSON:
+ for various ASCII control characters,
\xNN for a character code
- written with only two hex digits, and
- \u{N...} for a character
- code written with 1 to 6 hex digits.
+ written with only two hex digits,
+ \uNNNN for a Unicode
+ character identified by its 4-hex-digit code point, and
+ \u{N...} for a Unicode
+ character code point written with 1 to 6 hex digits.