about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-02-14 18:02:32 -0500
committerSteve Klabnik <steve@steveklabnik.com>2016-02-14 18:02:32 -0500
commit6ba5d9cfd5a76deae0adc1e28260d9821a94a3a7 (patch)
tree927b727b270f571bcae172d83be8112567d4c282
parentc49edbc5eefe9526b66c0f922a2ce10bd394b15d (diff)
parent310ab5ea747110941f14d6aa8dc69cb794f1335d (diff)
downloadrust-6ba5d9cfd5a76deae0adc1e28260d9821a94a3a7.tar.gz
rust-6ba5d9cfd5a76deae0adc1e28260d9821a94a3a7.zip
Rollup merge of #31649 - fbergr:doc, r=steveklabnik
-rw-r--r--src/doc/book/strings.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/strings.md b/src/doc/book/strings.md
index 751619d544a..68c7235975e 100644
--- a/src/doc/book/strings.md
+++ b/src/doc/book/strings.md
@@ -39,7 +39,7 @@ The second, with a `\`, trims the spaces and the newline:
 
 ```rust
 let s = "foo\
-    bar"; 
+    bar";
 
 assert_eq!("foobar", s);
 ```