about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-01-28 23:14:22 +0000
committerbors <bors@rust-lang.org>2017-01-28 23:14:22 +0000
commitf39f273826101595fcf40d6f7168a486fe75dda8 (patch)
tree5528dff82c9885f774aca9af2a15f9614cfcf73d /src
parent1491e0425911806f2612f05ee8caf21666447128 (diff)
parent339bdc158f37e3c9073c29d59de06899c93a1c90 (diff)
downloadrust-f39f273826101595fcf40d6f7168a486fe75dda8.tar.gz
rust-f39f273826101595fcf40d6f7168a486fe75dda8.zip
Auto merge of #39375 - seeekr:patch-1, r=apasel422
Fix typo in liballoc/lib.rs
Diffstat (limited to 'src')
-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.
 //!