Skip to content

Commit

Permalink
auto merge of #17227 : tshepang/rust/stronger-break, r=aturon
Browse files Browse the repository at this point in the history
Remove trailing whitespace while at it
  • Loading branch information
bors committed Sep 17, 2014
2 parents b75b0f7 + 46e3014 commit ff613ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit ff613ab

Please # to comment.