From ba3db7b03a9b4016d9bada0dc7f1696dfc3b0d30 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Fri, 7 Dec 2018 17:34:53 +0100 Subject: [PATCH] grammar --- src/libcore/ptr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index 69854c5a5d9..452f10bfbb6 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -2518,7 +2518,7 @@ pub fn eq(a: *const T, b: *const T) -> bool { /// Hash a raw pointer. /// -/// This can be used to hash a `&T` reference (which coerce to `*const T` implicitly) +/// This can be used to hash a `&T` reference (which coerces to `*const T` implicitly) /// by its address rather than the value it points to /// (which is what the `Hash for &T` implementation does). ///