about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-02-02 11:01:21 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-02-02 11:01:21 -0800
commit0a10e32a5e2c5e92e5f6df4718346a230cd49e97 (patch)
treefa1aa733db2d29ef5cf373b67dff24d567b1174c
parent02c149deb955588b31de0ba4cd3136a04e20fd1e (diff)
parentf371af48158b667eba717f2d1829a271aaecae39 (diff)
downloadrust-0a10e32a5e2c5e92e5f6df4718346a230cd49e97.tar.gz
rust-0a10e32a5e2c5e92e5f6df4718346a230cd49e97.zip
rollup merge of #21852: FreeFull/patch-1
Misspelling fix.
-rw-r--r--src/doc/trpl/strings.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/strings.md b/src/doc/trpl/strings.md
index e05c6e172a4..8ebebc98baf 100644
--- a/src/doc/trpl/strings.md
+++ b/src/doc/trpl/strings.md
@@ -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) {