From b3a7837eab3384876144621dedbeab88a1e44738 Mon Sep 17 00:00:00 2001 From: Robin Kruppe Date: Wed, 22 Apr 2015 23:06:32 +0200 Subject: [PATCH] Fix a tiny typo in core::raw --- src/libcore/raw.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/raw.rs b/src/libcore/raw.rs index 685b3e5c546..ec84ef7986a 100644 --- a/src/libcore/raw.rs +++ b/src/libcore/raw.rs @@ -80,7 +80,7 @@ impl Clone for Slice { /// `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. ///