rollup merge of #21852: FreeFull/patch-1

Misspelling fix.
This commit is contained in:
Alex Crichton 2015-02-02 11:01:21 -08:00
commit 0a10e32a5e
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ s.push_str(", world.");
println!("{}", s);
```
`String`s will coerece into `&str` with an `&`:
`String`s will coerce into `&str` with an `&`:
```
fn takes_slice(slice: &str) {