about summary refs log tree commit diff
path: root/doc/tutorial/syntax.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial/syntax.md')
-rw-r--r--doc/tutorial/syntax.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/tutorial/syntax.md b/doc/tutorial/syntax.md
index b9605ede85f..819df605d3a 100644
--- a/doc/tutorial/syntax.md
+++ b/doc/tutorial/syntax.md
@@ -240,7 +240,12 @@ character escapes, using the backslash character:
 String literals allow the same escape sequences. They are written
 between double quotes (`"hello"`). Rust strings may contain newlines.
 When a newline is preceded by a backslash, it, and all white space
-following it, will not appear in the resulting string literal.
+following it, will not appear in the resulting string literal. So
+this is equivalent to `"abc"`:
+
+    let s = "a\
+             b\
+             c";
 
 ## Operators