about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Paseltiner <apaseltiner@gmail.com>2015-11-05 13:29:46 -0500
committerAndrew Paseltiner <apaseltiner@gmail.com>2015-11-05 13:29:46 -0500
commitd76cdac48227d48670b8560c59ca059222b40444 (patch)
tree1f849ff0cbe86bb081b9be80ca8a90c86e13804a
parent74185aff27a2cfed37ea553242f6e7248c820a8c (diff)
downloadrust-d76cdac48227d48670b8560c59ca059222b40444.tar.gz
rust-d76cdac48227d48670b8560c59ca059222b40444.zip
Tidy `core::marker` doc summaries
-rw-r--r--src/libcore/marker.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 01b531624bc..2f2dcc41a1c 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -23,7 +23,7 @@ use option::Option;
 use hash::Hash;
 use hash::Hasher;
 
-/// Types able to be transferred across thread boundaries.
+/// Types that can be transferred across thread boundaries.
 #[stable(feature = "rust1", since = "1.0.0")]
 #[lang = "send"]
 #[rustc_on_unimplemented = "`{Self}` cannot be sent between threads safely"]
@@ -382,7 +382,7 @@ mod impls {
     unsafe impl<'a, T: Send + ?Sized> Send for &'a mut T {}
 }
 
-/// A marker trait indicates a type that can be reflected over.
+/// Types that can be reflected over.
 ///
 /// This trait is implemented for all types. Its purpose is to ensure
 /// that when you write a generic function that will employ