about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDenis Andrejew <da.colonel@gmail.com>2017-01-28 22:16:16 +0000
committerGitHub <noreply@github.com>2017-01-28 22:16:16 +0000
commit339bdc158f37e3c9073c29d59de06899c93a1c90 (patch)
treee15f05754e1b28cbe3b51698e02f1661389cfa37
parentc81c1d6a41babf7e34120625727211cad7b40b87 (diff)
downloadrust-339bdc158f37e3c9073c29d59de06899c93a1c90.tar.gz
rust-339bdc158f37e3c9073c29d59de06899c93a1c90.zip
Fix typo in liballoc/lib.rs
-rw-r--r--src/liballoc/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index c67106cf57a..0c01eabd593 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -47,7 +47,7 @@
 //! that the contained type `T` is shareable. Additionally, `Arc<T>` is itself
 //! sendable while `Rc<T>` is not.
 //!
-//! This types allows for shared access to the contained data, and is often
+//! This type allows for shared access to the contained data, and is often
 //! paired with synchronization primitives such as mutexes to allow mutation of
 //! shared resources.
 //!