Auto merge of #29678 - jwworth:pull-request/fix-typo, r=apasel422

Fixes the typo 'is is'.
This commit is contained in:
bors 2015-11-07 18:49:42 +00:00
commit 43b5d5e0de

View File

@ -193,7 +193,7 @@ println!("{}", x);
}
```
The problem here is is bit more subtle and interesting. We want Rust to
The problem here is a bit more subtle and interesting. We want Rust to
reject this program for the following reason: We have a live shared reference `x`
to a descendant of `data` when we try to take a mutable reference to `data`
to `push`. This would create an aliased mutable reference, which would