We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30f6665 commit 0f53e72Copy full SHA for 0f53e72
library/alloc/src/fmt.rs
@@ -278,17 +278,20 @@
278
//! Hello, ` 123` has 3 right-aligned characters
279
//! ```
280
//!
281
-//! When truncuating these values, Rust uses round-to-even, which may
282
-//! cause concern when formatting for scientific notation. For example,
+//! When truncating these values, Rust uses [round half-to-even](https://en.wikipedia.org/wiki/Rounding#Rounding_half_to_even),
+//! which is the default rounding mode in IEEE 754.
283
+//! For example,
284
285
286
//! print!("{0:.1$e}", 12345, 3);
287
+//! print!("{0:.1$e}", 12355, 3);
288
289
290
//! Would return:
291
292
//! ```text
293
//! 1.234e4
294
+//! 1.236e4
295
296
297
//! ## Localization
0 commit comments