]> git.lizzy.rs Git - rust.git/commitdiff
Fix a tiny typo in core::raw
authorRobin Kruppe <robin.kruppe@gmail.com>
Wed, 22 Apr 2015 21:06:32 +0000 (23:06 +0200)
committerRobin Kruppe <robin.kruppe@gmail.com>
Wed, 22 Apr 2015 21:06:32 +0000 (23:06 +0200)
src/libcore/raw.rs

index 685b3e5c546ddfb097edbf553ed2ae9e0e14a473..ec84ef7986a43b8b8c327954174c566ee6a90548 100644 (file)
@@ -80,7 +80,7 @@ fn clone(&self) -> Slice<T> { *self }
 /// `TraitObject` is guaranteed to match layouts, but it is not the
 /// type of trait objects (e.g. the fields are not directly accessible
 /// on a `&SomeTrait`) nor does it control that layout (changing the
-/// definition will not change the layout of a `&SometTrait`). It is
+/// definition will not change the layout of a `&SomeTrait`). It is
 /// only designed to be used by unsafe code that needs to manipulate
 /// the low-level details.
 ///