diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2016-02-27 08:04:53 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-02-27 10:52:01 +0530 |
| commit | 9c01031c728625c4eef078598d04b8376e4210e4 (patch) | |
| tree | 3bedd94f3ba23b65ad8e2af40372003d2d780c7a | |
| parent | 35b30424df6c5826f03ad1bc93c969b32a5a59ba (diff) | |
| parent | 25c62ebfdd53c3a41c5bd55b1dd3a5515d107f21 (diff) | |
| download | rust-9c01031c728625c4eef078598d04b8376e4210e4.tar.gz rust-9c01031c728625c4eef078598d04b8376e4210e4.zip | |
Rollup merge of #31918 - GuillaumeGomez:patch-3, r=steveklabnik
r? @steveklabnik Fixes #29334
| -rw-r--r-- | src/libstd/primitive_docs.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs index e5819522123..839287d1321 100644 --- a/src/libstd/primitive_docs.rs +++ b/src/libstd/primitive_docs.rs @@ -488,6 +488,9 @@ mod prim_tuple { } /// /// *[See also the `std::f32` module](f32/index.html).* /// +/// However, please note that examples are shared between the `f64` and `f32` +/// primitive types. So it's normal if you see usage of `f64` in there. +/// mod prim_f32 { } #[doc(primitive = "f64")] @@ -496,6 +499,9 @@ mod prim_f32 { } /// /// *[See also the `std::f64` module](f64/index.html).* /// +/// However, please note that examples are shared between the `f64` and `f32` +/// primitive types. So it's normal if you see usage of `f32` in there. +/// mod prim_f64 { } #[doc(primitive = "i8")] |
