Address feedback

This commit is contained in:
Brian Anderson
2015-07-20 17:12:59 -07:00
parent 8497c428e5
commit 778c89c1bb
14 changed files with 30 additions and 30 deletions

View File

@@ -16,7 +16,7 @@ mod prim_bool { }
#[doc(primitive = "char")]
//
/// A Unicode scalar value
/// A Unicode scalar value.
///
/// A `char` represents a
/// *[Unicode scalar
@@ -72,7 +72,7 @@ mod prim_unit { }
#[doc(primitive = "pointer")]
//
/// Raw, unsafe pointers, `*const T`, and `*mut T`
/// Raw, unsafe pointers, `*const T`, and `*mut T`.
///
/// Working with raw pointers in Rust is uncommon,
/// typically limited to a few patterns.
@@ -231,7 +231,7 @@ mod prim_slice { }
#[doc(primitive = "str")]
//
/// Unicode string slices
/// Unicode string slices.
///
/// Rust's `str` type is one of the core primitive types of the language. `&str`
/// is the borrowed string type. This type of string can only be created from
@@ -324,7 +324,7 @@ mod prim_str { }
mod prim_tuple { }
#[doc(primitive = "f32")]
/// The 32-bit floating point type
/// The 32-bit floating point type.
///
/// *[See also the `std::f32` module](f32/index.html).*
///
@@ -332,7 +332,7 @@ mod prim_f32 { }
#[doc(primitive = "f64")]
//
/// The 64-bit floating point type
/// The 64-bit floating point type.
///
/// *[See also the `std::f64` module](f64/index.html).*
///
@@ -340,7 +340,7 @@ mod prim_f64 { }
#[doc(primitive = "i8")]
//
/// The 8-bit signed integer type
/// The 8-bit signed integer type.
///
/// *[See also the `std::i8` module](i8/index.html).*
///
@@ -348,7 +348,7 @@ mod prim_i8 { }
#[doc(primitive = "i16")]
//
/// The 16-bit signed integer type
/// The 16-bit signed integer type.
///
/// *[See also the `std::i16` module](i16/index.html).*
///
@@ -356,7 +356,7 @@ mod prim_i16 { }
#[doc(primitive = "i32")]
//
/// The 32-bit signed integer type
/// The 32-bit signed integer type.
///
/// *[See also the `std::i32` module](i32/index.html).*
///
@@ -364,7 +364,7 @@ mod prim_i32 { }
#[doc(primitive = "i64")]
//
/// The 64-bit signed integer type
/// The 64-bit signed integer type.
///
/// *[See also the `std::i64` module](i64/index.html).*
///
@@ -372,7 +372,7 @@ mod prim_i64 { }
#[doc(primitive = "u8")]
//
/// The 8-bit unsigned integer type
/// The 8-bit unsigned integer type.
///
/// *[See also the `std::u8` module](u8/index.html).*
///
@@ -380,7 +380,7 @@ mod prim_u8 { }
#[doc(primitive = "u16")]
//
/// The 16-bit unsigned integer type
/// The 16-bit unsigned integer type.
///
/// *[See also the `std::u16` module](u16/index.html).*
///
@@ -388,7 +388,7 @@ mod prim_u16 { }
#[doc(primitive = "u32")]
//
/// The 32-bit unsigned integer type
/// The 32-bit unsigned integer type.
///
/// *[See also the `std::u32` module](u32/index.html).*
///
@@ -396,7 +396,7 @@ mod prim_u32 { }
#[doc(primitive = "u64")]
//
/// The 64-bit unsigned integer type
/// The 64-bit unsigned integer type.
///
/// *[See also the `std::u64` module](u64/index.html).*
///
@@ -404,7 +404,7 @@ mod prim_u64 { }
#[doc(primitive = "isize")]
//
/// The pointer-sized signed integer type
/// The pointer-sized signed integer type.
///
/// *[See also the `std::isize` module](isize/index.html).*
///
@@ -412,7 +412,7 @@ mod prim_isize { }
#[doc(primitive = "usize")]
//
/// The pointer-sized signed integer type
/// The pointer-sized signed integer type.
///
/// *[See also the `std::usize` module](usize/index.html).*
///