about summary refs log tree commit diff
diff options
context:
space:
mode:
authorfbergr <fbergr@gmail.com>2016-02-14 14:31:20 +0200
committerfbergr <fbergr@gmail.com>2016-02-14 14:31:20 +0200
commit310ab5ea747110941f14d6aa8dc69cb794f1335d (patch)
tree083cf8371cb6008f371d179adffe3d608efb8885
parent86e6e3235ee0df25ce41dcb48a08387125d31d35 (diff)
downloadrust-310ab5ea747110941f14d6aa8dc69cb794f1335d.tar.gz
rust-310ab5ea747110941f14d6aa8dc69cb794f1335d.zip
doc: Remove trailing whitespace
-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);
 ```