about summary refs log tree commit diff
path: root/src/libcore/num
diff options
context:
space:
mode:
authorRobin Kruppe <robin.kruppe@gmail.com>2016-02-04 14:09:59 +0100
committerRobin Kruppe <robin.kruppe@gmail.com>2016-02-04 16:28:08 +0100
commit33713bca490ca217b587b8841252b5adb6cbaf5d (patch)
tree8dedc3209e4181931a438a6f86ae939d169a1015 /src/libcore/num
parentcc68f2c6bfeece790748474f0b1e232079212942 (diff)
downloadrust-33713bca490ca217b587b8841252b5adb6cbaf5d.tar.gz
rust-33713bca490ca217b587b8841252b5adb6cbaf5d.zip
drive-by doc fixes
Diffstat (limited to 'src/libcore/num')
-rw-r--r--src/libcore/num/dec2flt/algorithm.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/num/dec2flt/algorithm.rs b/src/libcore/num/dec2flt/algorithm.rs
index 245f415de00..e33c2814bf2 100644
--- a/src/libcore/num/dec2flt/algorithm.rs
+++ b/src/libcore/num/dec2flt/algorithm.rs
@@ -127,7 +127,7 @@ fn algorithm_r<T: RawFloat>(f: &Big, e: i16, z0: T) -> T {
         // This is written a bit awkwardly because our bignums don't support
         // negative numbers, so we use the absolute value + sign information.
         // The multiplication with m_digits can't overflow. If `x` or `y` are large enough that
-        // we need to worry about overflow, then they are also large enough that`make_ratio` has
+        // we need to worry about overflow, then they are also large enough that `make_ratio` has
         // reduced the fraction by a factor of 2^64 or more.
         let (d2, d_negative) = if x >= y {
             // Don't need x any more, save a clone().