diff --git a/src/type-coercions.md b/src/type-coercions.md index c11655496984b..22b6ceefcb34f 100644 --- a/src/type-coercions.md +++ b/src/type-coercions.md @@ -106,7 +106,7 @@ Coercion is allowed between the following types: * `&mut T` to `*mut T` -* `&T` to `&U` if `T` implements `Deref`. For example: +* `&T` or `&mut T` to `&U` if `T` implements `Deref`. For example: ```rust use std::ops::Deref;