Skip to content

Commit 778c89c

Browse files
committed
Address feedback
1 parent 8497c42 commit 778c89c

File tree

14 files changed

+30
-30
lines changed

14 files changed

+30
-30
lines changed

src/libstd/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -415,9 +415,9 @@ pub mod __rand {
415415
pub use rand::{thread_rng, ThreadRng, Rng};
416416
}
417417

418-
// Include a private number of modules that exist soley to provide the
419-
// rustdoc documentation for primitive types. Using `include!` because
420-
// rustdoc only looks for these modules at the crate level.
418+
// Include a number of private modules that exist solely to provide
419+
// the rustdoc documentation for primitive types. Using `include!`
420+
// because rustdoc only looks for these modules at the crate level.
421421
include!("primitive_docs.rs");
422422

423423
// A curious inner-module that's not exported that contains the binding

src/libstd/num/f32.rs

Lines changed: 1 addition & 1 deletion
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 32-bit floating point type
11+
//! The 32-bit floating point type.
1212
//!
1313
//! *[See also the `f32` primitive type](../primitive.f32.html).*
1414

src/libstd/num/f64.rs

Lines changed: 1 addition & 1 deletion
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 32-bit floating point type
11+
//! The 64-bit floating point type.
1212
//!
1313
//! *[See also the `f64` primitive type](../primitive.f64.html).*
1414

src/libstd/num/i16.rs

Lines changed: 1 addition & 1 deletion
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 16-bit signed integer type
11+
//! The 16-bit signed integer type.
1212
//!
1313
//! *[See also the `i16` primitive type](../primitive.i16.html).*
1414

src/libstd/num/i32.rs

Lines changed: 1 addition & 1 deletion
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 32-bit signed integer type
11+
//! The 32-bit signed integer type.
1212
//!
1313
//! *[See also the `i32` primitive type](../primitive.i32.html).*
1414

src/libstd/num/i64.rs

Lines changed: 1 addition & 1 deletion
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 64-bit signed integer type
11+
//! The 64-bit signed integer type.
1212
//!
1313
//! *[See also the `i64` primitive type](../primitive.i64.html).*
1414

src/libstd/num/i8.rs

Lines changed: 1 addition & 1 deletion
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 8-bit signed integer type
11+
//! The 8-bit signed integer type.
1212
//!
1313
//! *[See also the `i8` primitive type](../primitive.i8.html).*
1414

src/libstd/num/isize.rs

Lines changed: 1 addition & 1 deletion
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 pointer-sized signed integer type
11+
//! The pointer-sized signed integer type.
1212
//!
1313
//! *[See also the `isize` primitive type](../primitive.isize.html).*
1414

src/libstd/num/u16.rs

Lines changed: 1 addition & 1 deletion
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 16-bit unsigned integer type
11+
//! The 16-bit unsigned integer type.
1212
//!
1313
//! *[See also the `u16` primitive type](../primitive.u16.html).*
1414

src/libstd/num/u32.rs

Lines changed: 1 addition & 1 deletion
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 32-bit unsigned integer type
11+
//! The 32-bit unsigned integer type.
1212
//!
1313
//! *[See also the `u32` primitive type](../primitive.u32.html).*
1414

0 commit comments

Comments
 (0)