Skip to content

Commit 0f53e72

Browse files
committed
docs: use correct link, use secondary example
1 parent 30f6665 commit 0f53e72

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

library/alloc/src/fmt.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -278,17 +278,20 @@
278278
//! Hello, ` 123` has 3 right-aligned characters
279279
//! ```
280280
//!
281-
//! When truncuating these values, Rust uses round-to-even, which may
282-
//! cause concern when formatting for scientific notation. For example,
281+
//! When truncating these values, Rust uses [round half-to-even](https://en.wikipedia.org/wiki/Rounding#Rounding_half_to_even),
282+
//! which is the default rounding mode in IEEE 754.
283+
//! For example,
283284
//!
284285
//! ```
285286
//! print!("{0:.1$e}", 12345, 3);
287+
//! print!("{0:.1$e}", 12355, 3);
286288
//! ```
287289
//!
288290
//! Would return:
289291
//!
290292
//! ```text
291293
//! 1.234e4
294+
//! 1.236e4
292295
//! ```
293296
//!
294297
//! ## Localization

0 commit comments

Comments
 (0)