]> git.lizzy.rs Git - rust.git/commitdiff
Closes issue #21850
authorFilip Szczepański <jazz2rulez@gmail.com>
Mon, 2 Feb 2015 00:46:34 +0000 (00:46 +0000)
committerFilip Szczepański <jazz2rulez@gmail.com>
Mon, 2 Feb 2015 00:46:34 +0000 (00:46 +0000)
src/doc/trpl/strings.md

index e05c6e172a49e9d5dafd6dd355702de4be60a510..8ebebc98baf6b6d6bd4bb1f549e1400d33734d58 100644 (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) {