about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-10-06 08:48:37 +0000
committerbors <bors@rust-lang.org>2015-10-06 08:48:37 +0000
commit547c2cdca861b00cb78bc6a550cc201e2d06ec23 (patch)
tree49c274b1183b64e21364d7869d95780fda475cc5 /src
parentb1d9ce967f24515b29c4b007b2bb6e7329d1c4f9 (diff)
parentda001b87305c9e4798929fcb1278caa161b4cae1 (diff)
downloadrust-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.rs2
-rw-r--r--src/libcore/num/f64.rs2
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.