about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-01-14 14:58:34 -0500
committerSteve Klabnik <steve@steveklabnik.com>2016-01-14 14:58:34 -0500
commit72ebb193a96ca7c7e774349e4c147feb896e339a (patch)
treec78ec003273de6030ce9b3653f69d859ea3d9d22 /src/libstd
parentc88574a32b8e6ce48873d67cf2543a94733ad351 (diff)
parent729e566020481a61fcf84d921b939a2535ffe643 (diff)
downloadrust-72ebb193a96ca7c7e774349e4c147feb896e339a.tar.gz
rust-72ebb193a96ca7c7e774349e4c147feb896e339a.zip
Rollup merge of #30902 - tomaka:patch-1, r=steveklabnik
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/num/f32.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/num/f32.rs b/src/libstd/num/f32.rs
index 259f0d390b4..7f57d6dc650 100644
--- a/src/libstd/num/f32.rs
+++ b/src/libstd/num/f32.rs
@@ -62,7 +62,7 @@ mod cmath {
         pub fn hypotf(x: c_float, y: c_float) -> c_float;
     }
 
-    // See the comments in `core::float::Float::floor` for why MSVC is special
+    // See the comments in the `floor` function for why MSVC is special
     // here.
     #[cfg(not(target_env = "msvc"))]
     extern {