about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-09-17 03:46:15 +0000
committerbors <bors@rust-lang.org>2014-09-17 03:46:15 +0000
commitff613abaa2bbd7b443b17059b4927d8b4b1e82ff (patch)
treea80c99723d236bd63d2805a1cdf0e32df906a9d7 /src
parentb75b0f79235c919b3ab959fb79247d2997bd63e0 (diff)
parent46e3014ce099e729e66a9b6dd2be678a92f2cc4f (diff)
downloadrust-ff613abaa2bbd7b443b17059b4927d8b4b1e82ff.tar.gz
rust-ff613abaa2bbd7b443b17059b4927d8b4b1e82ff.zip
auto merge of #17227 : tshepang/rust/stronger-break, r=aturon
Remove trailing whitespace while at it
Diffstat (limited to 'src')
-rw-r--r--src/doc/guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index 41a0e9abf6c..cf97cc3ab64 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -4273,7 +4273,7 @@ very common with iterators: we can ignore unnecessary bounds checks, but still
 know that we're safe.
 
 There's another detail here that's not 100% clear because of how `println!`
-works. `num` is actually of type `&int`, that is, it's a reference to an `int`,
+works. `num` is actually of type `&int`. That is, it's a reference to an `int`,
 not an `int` itself. `println!` handles the dereferencing for us, so we don't
 see it. This code works fine too: