]> git.lizzy.rs Git - rust.git/commitdiff
Fix data types indication
authorVeryTastyTomato <VeryTastyTomato@users.noreply.github.com>
Sun, 19 May 2019 13:51:46 +0000 (13:51 +0000)
committerGitHub <noreply@github.com>
Sun, 19 May 2019 13:51:46 +0000 (13:51 +0000)
Fix the data types indication in basic examples of the Trait std::fmt::LowerExp and std::fmt::UpperExp.
Since there aren’t any type annotation on the let statement using the number 42.0, they are of type f64 according to The Book:
https://doc.rust-lang.org/book/ch03-02-data-types.html#floating-point-types

src/libcore/fmt/mod.rs

index 43c1a3b7767ab647838c9f4f3702e0a29271a881..2f6d745d146d647d3fd5716e57db7dc020964b39 100644 (file)
@@ -886,7 +886,7 @@ pub trait Pointer {
 ///
 /// # Examples
 ///
-/// Basic usage with `i32`:
+/// Basic usage with `f64`:
 ///
 /// ```
 /// let x = 42.0; // 42.0 is '4.2e1' in scientific notation
@@ -929,7 +929,7 @@ pub trait LowerExp {
 ///
 /// # Examples
 ///
-/// Basic usage with `f32`:
+/// Basic usage with `f64`:
 ///
 /// ```
 /// let x = 42.0; // 42.0 is '4.2E1' in scientific notation