diff --git a/src/doc/trpl/strings.md b/src/doc/trpl/strings.md index abe17a96b39a6..c354fd09edd80 100644 --- a/src/doc/trpl/strings.md +++ b/src/doc/trpl/strings.md @@ -123,7 +123,7 @@ let world = "world!".to_string(); let hello_world = hello + &world; ``` -This is because `&String` can automatically coerece to a `&str`. This is a +This is because `&String` can automatically coerce to a `&str`. This is a feature called ‘[`Deref` coercions][dc]’. [dc]: deref-coercions.html