diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-03-25 10:23:51 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-03-25 10:27:24 -0700 |
| commit | fad77175e1811bdd0991ed00dc1a10ade8721a0b (patch) | |
| tree | 82046aad7850dba04c4bcc02587600d88a4b2108 /src/libstd/num | |
| parent | a424e84a3e0157f3f0160ae366ba469457cb6295 (diff) | |
| download | rust-fad77175e1811bdd0991ed00dc1a10ade8721a0b.tar.gz rust-fad77175e1811bdd0991ed00dc1a10ade8721a0b.zip | |
std: Touch various I/O documentation blocks
These are mostly touchups from the previous commit.
Diffstat (limited to 'src/libstd/num')
| -rw-r--r-- | src/libstd/num/mod.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstd/num/mod.rs b/src/libstd/num/mod.rs index 31124db49b9..202e26e2c93 100644 --- a/src/libstd/num/mod.rs +++ b/src/libstd/num/mod.rs @@ -340,11 +340,11 @@ pub enum FPCategory { } /// Operations on primitive floating point numbers. -/// -/// TODO(#5527): In a future version of Rust, many of these functions will become constants. -/// -/// FIXME(#8888): Several of these functions have a parameter named `unused_self`. Removing it -/// requires #8888 to be fixed. +// FIXME(#5527): In a future version of Rust, many of these functions will +// become constants. +// +// FIXME(#8888): Several of these functions have a parameter named +// `unused_self`. Removing it requires #8888 to be fixed. pub trait Float: Signed + Round + Primitive { /// Returns the maximum of the two numbers. fn max(self, other: Self) -> Self; |
