Closes issue #21850

This commit is contained in:
Filip Szczepański 2015-02-02 00:46:34 +00:00
parent c2bda2a5bb
commit f371af4815

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) {