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

src/libstd/num/u64.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 unsigned integer type
11+
//! The 64-bit unsigned integer type.
1212
//!
1313
//! *[See also the `u64` primitive type](../primitive.u64.html).*
1414

src/libstd/num/u8.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 unsigned integer type
11+
//! The 8-bit unsigned integer type.
1212
//!
1313
//! *[See also the `u8` primitive type](../primitive.u8.html).*
1414

src/libstd/num/usize.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 unsigned integer type
11+
//! The pointer-sized unsigned integer type.
1212
//!
1313
//! *[See also the `usize` primitive type](../primitive.usize.html).*
1414

src/libstd/primitive_docs.rs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mod prim_bool { }
1616

1717
#[doc(primitive = "char")]
1818
//
19-
/// A Unicode scalar value
19+
/// A Unicode scalar value.
2020
///
2121
/// A `char` represents a
2222
/// *[Unicode scalar
@@ -72,7 +72,7 @@ mod prim_unit { }
7272

7373
#[doc(primitive = "pointer")]
7474
//
75-
/// Raw, unsafe pointers, `*const T`, and `*mut T`
75+
/// Raw, unsafe pointers, `*const T`, and `*mut T`.
7676
///
7777
/// Working with raw pointers in Rust is uncommon,
7878
/// typically limited to a few patterns.
@@ -231,7 +231,7 @@ mod prim_slice { }
231231

232232
#[doc(primitive = "str")]
233233
//
234-
/// Unicode string slices
234+
/// Unicode string slices.
235235
///
236236
/// Rust's `str` type is one of the core primitive types of the language. `&str`
237237
/// is the borrowed string type. This type of string can only be created from
@@ -324,95 +324,95 @@ mod prim_str { }
324324
mod prim_tuple { }
325325

326326
#[doc(primitive = "f32")]
327-
/// The 32-bit floating point type
327+
/// The 32-bit floating point type.
328328
///
329329
/// *[See also the `std::f32` module](f32/index.html).*
330330
///
331331
mod prim_f32 { }
332332

333333
#[doc(primitive = "f64")]
334334
//
335-
/// The 64-bit floating point type
335+
/// The 64-bit floating point type.
336336
///
337337
/// *[See also the `std::f64` module](f64/index.html).*
338338
///
339339
mod prim_f64 { }
340340

341341
#[doc(primitive = "i8")]
342342
//
343-
/// The 8-bit signed integer type
343+
/// The 8-bit signed integer type.
344344
///
345345
/// *[See also the `std::i8` module](i8/index.html).*
346346
///
347347
mod prim_i8 { }
348348

349349
#[doc(primitive = "i16")]
350350
//
351-
/// The 16-bit signed integer type
351+
/// The 16-bit signed integer type.
352352
///
353353
/// *[See also the `std::i16` module](i16/index.html).*
354354
///
355355
mod prim_i16 { }
356356

357357
#[doc(primitive = "i32")]
358358
//
359-
/// The 32-bit signed integer type
359+
/// The 32-bit signed integer type.
360360
///
361361
/// *[See also the `std::i32` module](i32/index.html).*
362362
///
363363
mod prim_i32 { }
364364

365365
#[doc(primitive = "i64")]
366366
//
367-
/// The 64-bit signed integer type
367+
/// The 64-bit signed integer type.
368368
///
369369
/// *[See also the `std::i64` module](i64/index.html).*
370370
///
371371
mod prim_i64 { }
372372

373373
#[doc(primitive = "u8")]
374374
//
375-
/// The 8-bit unsigned integer type
375+
/// The 8-bit unsigned integer type.
376376
///
377377
/// *[See also the `std::u8` module](u8/index.html).*
378378
///
379379
mod prim_u8 { }
380380

381381
#[doc(primitive = "u16")]
382382
//
383-
/// The 16-bit unsigned integer type
383+
/// The 16-bit unsigned integer type.
384384
///
385385
/// *[See also the `std::u16` module](u16/index.html).*
386386
///
387387
mod prim_u16 { }
388388

389389
#[doc(primitive = "u32")]
390390
//
391-
/// The 32-bit unsigned integer type
391+
/// The 32-bit unsigned integer type.
392392
///
393393
/// *[See also the `std::u32` module](u32/index.html).*
394394
///
395395
mod prim_u32 { }
396396

397397
#[doc(primitive = "u64")]
398398
//
399-
/// The 64-bit unsigned integer type
399+
/// The 64-bit unsigned integer type.
400400
///
401401
/// *[See also the `std::u64` module](u64/index.html).*
402402
///
403403
mod prim_u64 { }
404404

405405
#[doc(primitive = "isize")]
406406
//
407-
/// The pointer-sized signed integer type
407+
/// The pointer-sized signed integer type.
408408
///
409409
/// *[See also the `std::isize` module](isize/index.html).*
410410
///
411411
mod prim_isize { }
412412

413413
#[doc(primitive = "usize")]
414414
//
415-
/// The pointer-sized signed integer type
415+
/// The pointer-sized signed integer type.
416416
///
417417
/// *[See also the `std::usize` module](usize/index.html).*
418418
///

0 commit comments

Comments
 (0)