about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-08-08 14:36:10 +0000
committerbors <bors@rust-lang.org>2014-08-08 14:36:10 +0000
commit86decf638e95f93b60f2325263005c60e7d3183e (patch)
treefe5c486383b348f9985e4cb38bcef7bfb75f38eb /src/libstd
parent67a05bd793328d33c7fd7b01e0e4d656e1bbe450 (diff)
parent0582a2d6e75299313d1b8e655b4161aa0225fcde (diff)
downloadrust-86decf638e95f93b60f2325263005c60e7d3183e.tar.gz
rust-86decf638e95f93b60f2325263005c60e7d3183e.zip
auto merge of #16327 : mdinger/rust/typo, r=steveklabnik
Fix typo. It's possible it's `These modules` but I think it's supposed to be singular because it's not refering to nested modules.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/sync/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mod.rs b/src/libstd/sync/mod.rs
index 1d189f8d4bc..c9526a64f46 100644
--- a/src/libstd/sync/mod.rs
+++ b/src/libstd/sync/mod.rs
@@ -10,7 +10,7 @@
 
 //! Useful synchronization primitives
 //!
-//! This modules contains useful safe and unsafe synchronization primitives.
+//! This module contains useful safe and unsafe synchronization primitives.
 //! Most of the primitives in this module do not provide any sort of locking
 //! and/or blocking at all, but rather provide the necessary tools to build
 //! other types of concurrent primitives.