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). ///