File tree 5 files changed +9
-7
lines changed
5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- //! Utilities for formatting and printing `String`s
11
+ //! Utilities for formatting and printing `String`s.
12
12
//!
13
13
//! This module contains the runtime support for the [`format!`] syntax extension.
14
14
//! This macro is implemented in the compiler to emit calls to this module in
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ macro_rules! try {
361
361
} )
362
362
}
363
363
364
- /// Write formatted data into a buffer
364
+ /// Write formatted data into a buffer.
365
365
///
366
366
/// This macro accepts a format string, a list of arguments, and a 'writer'. Arguments will be
367
367
/// formatted according to the specified format string and the result will be passed to the writer.
Original file line number Diff line number Diff line change 9
9
// except according to those terms.
10
10
11
11
//! This module provides constants which are specific to the implementation
12
- //! of the `f32` floating point data type. Mathematically significant
13
- //! numbers are provided in the `consts` sub-module.
12
+ //! of the `f32` floating point data type.
13
+ //!
14
+ //! Mathematically significant numbers are provided in the `consts` sub-module.
14
15
//!
15
16
//! *[See also the `f32` primitive type](../primitive.f32.html).*
16
17
Original file line number Diff line number Diff line change 9
9
// except according to those terms.
10
10
11
11
//! This module provides constants which are specific to the implementation
12
- //! of the `f64` floating point data type. Mathematically significant
13
- //! numbers are provided in the `consts` sub-module.
12
+ //! of the `f64` floating point data type.
13
+ //!
14
+ //! Mathematically significant numbers are provided in the `consts` sub-module.
14
15
//!
15
16
//! *[See also the `f64` primitive type](../primitive.f64.html).*
16
17
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- //! Panic support in the standard library
11
+ //! Panic support in the standard library.
12
12
13
13
#![ stable( feature = "std_panic" , since = "1.9.0" ) ]
14
14
You can’t perform that action at this time.
0 commit comments