diff --git a/src/libcore/mem.rs b/src/libcore/mem.rs index ee6e708ea32..fb6dac40798 100644 --- a/src/libcore/mem.rs +++ b/src/libcore/mem.rs @@ -130,7 +130,7 @@ pub fn size_of() -> usize { unsafe { intrinsics::size_of::() } } -/// Returns the size of the type that `val` points to in bytes. +/// Returns the size of the given value in bytes. /// /// # Examples ///