diff --git a/doc/ca65.sgml b/doc/ca65.sgml
index e0566fda4..25c46c4c2 100644
--- a/doc/ca65.sgml
+++ b/doc/ca65.sgml
@@ -2835,19 +2835,18 @@ Here's a list of all control commands and a description, what they do:
Allow C-style backslash escapes within string constants to embed
special characters. The following escapes are accepted:
+
+ \\ backslash ($5C)
+ \' single quote ($27)
+ \" double quote ($22)
+ \t tab ($09)
+ \r carriage return ($0D)
+ \n newline ($0A)
+ \xNN ($NN)
+
-
-\\ backslash ($5C)
-\' single quote ($27)
-\" double quote ($22)
-\t tab ($09)
-\r carriage return ($0D)
-\n newline ($0A)
-\xNN ($NN)
-
-
- Note that \n maps to ASCII $0A, not a platform specific
- line ending character.
+ Note that string escapes are converted to platform-specific characters in
+ the same way that other characters are converted.
ubiquitous_idents