about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-04-24 09:44:17 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-04-24 19:21:13 +0530
commitfb0f344ae2c913ba5fb796a9ad86161efcedd58c (patch)
tree41ebe92be4e73702f1aa73e4ac559fe90275e0d3
parentb5fddf9b19ff3d4441b3e3cf7c3a6132b6286d39 (diff)
parentb3a7837eab3384876144621dedbeab88a1e44738 (diff)
downloadrust-fb0f344ae2c913ba5fb796a9ad86161efcedd58c.tar.gz
rust-fb0f344ae2c913ba5fb796a9ad86161efcedd58c.zip
Rollup merge of #24700 - rkruppe:doc-typos, r=alexcrichton
r? @steveklabnik
-rw-r--r--src/libcore/raw.rs2
1 files changed, 1 insertions, 1 deletions
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<T> Clone for Slice<T> {
 /// `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.
 ///