Skip to content

Commit 79f914f

Browse files
committed
Auto merge of #32051 - steveklabnik:gh9447, r=bluss
Fixes #9447
2 parents 6d262db + 096409c commit 79f914f

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

src/libcollections/str.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Unicode string slices
11+
//! Unicode string slices.
1212
//!
1313
//! *[See also the `str` primitive type](../primitive.str.html).*
1414

src/libcore/clone.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! The `Clone` trait for types that cannot be 'implicitly copied'
11+
//! The `Clone` trait for types that cannot be 'implicitly copied'.
1212
//!
1313
//! In Rust, some simple types are "implicitly copyable" and when you
1414
//! assign them or pass them as arguments, the receiver will get a copy,

src/libcore/fmt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Utilities for formatting and printing strings
11+
//! Utilities for formatting and printing strings.
1212
1313
#![stable(feature = "rust1", since = "1.0.0")]
1414

src/libcore/iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Composable external iteration
11+
//! Composable external iteration.
1212
//!
1313
//! If you've found yourself with a collection of some kind, and needed to
1414
//! perform an operation on the elements of said collection, you'll quickly run

src/libcore/mem.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Basic functions for dealing with memory
11+
//! Basic functions for dealing with memory.
1212
//!
1313
//! This module contains functions for querying the size and alignment of
1414
//! types, initializing and manipulating memory.

src/libcore/ops.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Overloadable operators
11+
//! Overloadable operators.
1212
//!
1313
//! Implementing these traits allows you to get an effect similar to
1414
//! overloading operators.

src/libcore/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Optional values
11+
//! Optional values.
1212
//!
1313
//! Type `Option` represents an optional value: every `Option`
1414
//! is either `Some` and contains a value, or `None`, and

src/libcore/ptr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// FIXME: talk about offset, copy_memory, copy_nonoverlapping_memory
1212

13-
//! Raw, unsafe pointers, `*const T`, and `*mut T`
13+
//! Raw, unsafe pointers, `*const T`, and `*mut T`.
1414
//!
1515
//! *[See also the pointer primitive types](../../std/primitive.pointer.html).*
1616

src/libcore/result.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Error handling with the `Result` type
11+
//! Error handling with the `Result` type.
1212
//!
1313
//! `Result<T, E>` is the type used for returning and propagating
1414
//! errors. It is an enum with the variants, `Ok(T)`, representing

src/libstd/ascii.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Operations on ASCII strings and characters
11+
//! Operations on ASCII strings and characters.
1212
1313
#![stable(feature = "rust1", since = "1.0.0")]
1414

src/libstd/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Filesystem manipulation operations
11+
//! Filesystem manipulation operations.
1212
//!
1313
//! This module contains basic methods to manipulate the contents of the local
1414
//! filesystem. All methods in this module represent cross-platform filesystem

src/libstd/os/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! OS-specific functionality
11+
//! OS-specific functionality.
1212
1313
#![stable(feature = "os", since = "1.0.0")]
1414
#![allow(missing_docs, bad_style)]

src/libstd/prelude/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! The Rust Prelude
11+
//! The Rust Prelude.
1212
//!
1313
//! Rust comes with a variety of things in its standard library. However, if
1414
//! you had to manually import every single thing that you used, it would be

src/libstd/sync/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Useful synchronization primitives
11+
//! Useful synchronization primitives.
1212
//!
1313
//! This module contains useful safe and unsafe synchronization primitives.
1414
//! Most of the primitives in this module do not provide any sort of locking

src/libstd/thread/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Native threads
11+
//! Native threads.
1212
//!
1313
//! ## The threading model
1414
//!

0 commit comments

Comments
 (0)