diff --git a/idioms/coercion-arguments.md b/idioms/coercion-arguments.md index b6f5893..caa37c9 100644 --- a/idioms/coercion-arguments.md +++ b/idioms/coercion-arguments.md @@ -21,7 +21,7 @@ coerce to a `&str` whenever the function is invoked. For this example, we will illustrate some differences for using `&String` as a function argument versus using a `&str`, but the ideas apply as well to using -`&Vec` versus using a `&[T]` or using a `&T` versus a `&Box`. +`&Vec` versus using a `&[T]` or using a `&Box` versus a `&T`. Consider an example where we wish to determine if a word contains three consecutive vowels. We don't need to own the string to determine this, so we