diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-02-02 11:01:21 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-02-02 11:01:21 -0800 |
| commit | 0a10e32a5e2c5e92e5f6df4718346a230cd49e97 (patch) | |
| tree | fa1aa733db2d29ef5cf373b67dff24d567b1174c | |
| parent | 02c149deb955588b31de0ba4cd3136a04e20fd1e (diff) | |
| parent | f371af48158b667eba717f2d1829a271aaecae39 (diff) | |
| download | rust-0a10e32a5e2c5e92e5f6df4718346a230cd49e97.tar.gz rust-0a10e32a5e2c5e92e5f6df4718346a230cd49e97.zip | |
rollup merge of #21852: FreeFull/patch-1
Misspelling fix.
| -rw-r--r-- | src/doc/trpl/strings.md | 2 |
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) { |
