about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-03-07 06:54:36 +0000
committerbors <bors@rust-lang.org>2016-03-07 06:54:36 +0000
commit79f914fdb90b21e7ec4a224671df59357e5cc49d (patch)
tree0f3cf5df79e0ce6bec60d7cb1d01cc9e43c8f3bf /src/libstd
parent6d262db4482e13ec05eb113e57e26d249698b4cf (diff)
parent096409cf8c2f0fcfe8dec77fd293ce5a4ba41284 (diff)
downloadrust-79f914fdb90b21e7ec4a224671df59357e5cc49d.tar.gz
rust-79f914fdb90b21e7ec4a224671df59357e5cc49d.zip
Auto merge of #32051 - steveklabnik:gh9447, r=bluss
Fixes #9447
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/ascii.rs2
-rw-r--r--src/libstd/fs.rs2
-rw-r--r--src/libstd/os/mod.rs2
-rw-r--r--src/libstd/prelude/mod.rs2
-rw-r--r--src/libstd/sync/mod.rs2
-rw-r--r--src/libstd/thread/mod.rs2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs
index 98685cae870..031a9b8bec2 100644
--- a/src/libstd/ascii.rs
+++ b/src/libstd/ascii.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! Operations on ASCII strings and characters
+//! Operations on ASCII strings and characters.
 
 #![stable(feature = "rust1", since = "1.0.0")]
 
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index badbba21d55..53384fb9b15 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! Filesystem manipulation operations
+//! Filesystem manipulation operations.
 //!
 //! This module contains basic methods to manipulate the contents of the local
 //! filesystem. All methods in this module represent cross-platform filesystem
diff --git a/src/libstd/os/mod.rs b/src/libstd/os/mod.rs
index e15c8d67a8a..72baa4abb26 100644
--- a/src/libstd/os/mod.rs
+++ b/src/libstd/os/mod.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! OS-specific functionality
+//! OS-specific functionality.
 
 #![stable(feature = "os", since = "1.0.0")]
 #![allow(missing_docs, bad_style)]
diff --git a/src/libstd/prelude/mod.rs b/src/libstd/prelude/mod.rs
index ebd299efa78..f4cd319f064 100644
--- a/src/libstd/prelude/mod.rs
+++ b/src/libstd/prelude/mod.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! The Rust Prelude
+//! The Rust Prelude.
 //!
 //! Rust comes with a variety of things in its standard library. However, if
 //! you had to manually import every single thing that you used, it would be
diff --git a/src/libstd/sync/mod.rs b/src/libstd/sync/mod.rs
index 9c9aa20eff5..1a42b091831 100644
--- a/src/libstd/sync/mod.rs
+++ b/src/libstd/sync/mod.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! Useful synchronization primitives
+//! Useful 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
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs
index 981ba1e36e9..6a923c8c094 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! Native threads
+//! Native threads.
 //!
 //! ## The threading model
 //!