diff options
| author | bors <bors@rust-lang.org> | 2015-10-06 08:48:37 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-10-06 08:48:37 +0000 |
| commit | 547c2cdca861b00cb78bc6a550cc201e2d06ec23 (patch) | |
| tree | 49c274b1183b64e21364d7869d95780fda475cc5 /src | |
| parent | b1d9ce967f24515b29c4b007b2bb6e7329d1c4f9 (diff) | |
| parent | da001b87305c9e4798929fcb1278caa161b4cae1 (diff) | |
| download | rust-547c2cdca861b00cb78bc6a550cc201e2d06ec23.tar.gz rust-547c2cdca861b00cb78bc6a550cc201e2d06ec23.zip | |
Auto merge of #28855 - jld:mathematial, r=alexcrichton
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcore/num/f32.rs | 2 | ||||
| -rw-r--r-- | src/libcore/num/f64.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/num/f32.rs b/src/libcore/num/f32.rs index 1b7cbb050d1..6185823d001 100644 --- a/src/libcore/num/f32.rs +++ b/src/libcore/num/f32.rs @@ -71,7 +71,7 @@ pub const INFINITY: f32 = 1.0_f32/0.0_f32; #[allow(missing_docs)] pub const NEG_INFINITY: f32 = -1.0_f32/0.0_f32; -/// Basic mathematial constants. +/// Basic mathematical constants. #[stable(feature = "rust1", since = "1.0.0")] pub mod consts { // FIXME: replace with mathematical constants from cmath. diff --git a/src/libcore/num/f64.rs b/src/libcore/num/f64.rs index a057e5fe51a..f85f8c5bd14 100644 --- a/src/libcore/num/f64.rs +++ b/src/libcore/num/f64.rs @@ -71,7 +71,7 @@ pub const INFINITY: f64 = 1.0_f64/0.0_f64; #[allow(missing_docs)] pub const NEG_INFINITY: f64 = -1.0_f64/0.0_f64; -/// Basic mathematial constants. +/// Basic mathematical constants. #[stable(feature = "rust1", since = "1.0.0")] pub mod consts { // FIXME: replace with mathematical constants from cmath. |
