From b00b32cdaaa67033992ded2668e855635134597b Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 30 Nov 2015 10:16:36 -0800 Subject: [PATCH] Correct grammar Thanks @Manishearth --- src/doc/book/casting-between-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/casting-between-types.md b/src/doc/book/casting-between-types.md index e0e9b75d464f..0e3db983a005 100644 --- a/src/doc/book/casting-between-types.md +++ b/src/doc/book/casting-between-types.md @@ -29,7 +29,7 @@ References can also be coerced to raw pointers: * `&mut T` to `*mut T` -Custom coercion may be defined using [`Deref`](deref-coercions.md). +Custom coercions may be defined using [`Deref`](deref-coercions.md). Coercion is transitive.