From 339bdc158f37e3c9073c29d59de06899c93a1c90 Mon Sep 17 00:00:00 2001 From: Denis Andrejew Date: Sat, 28 Jan 2017 22:16:16 +0000 Subject: [PATCH] Fix typo in liballoc/lib.rs --- src/liballoc/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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` is itself //! sendable while `Rc` 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. //!