diff options
| author | Robin Kruppe <robin.kruppe@gmail.com> | 2016-02-04 14:09:59 +0100 |
|---|---|---|
| committer | Robin Kruppe <robin.kruppe@gmail.com> | 2016-02-04 16:28:08 +0100 |
| commit | 33713bca490ca217b587b8841252b5adb6cbaf5d (patch) | |
| tree | 8dedc3209e4181931a438a6f86ae939d169a1015 /src/libcore/num | |
| parent | cc68f2c6bfeece790748474f0b1e232079212942 (diff) | |
| download | rust-33713bca490ca217b587b8841252b5adb6cbaf5d.tar.gz rust-33713bca490ca217b587b8841252b5adb6cbaf5d.zip | |
drive-by doc fixes
Diffstat (limited to 'src/libcore/num')
| -rw-r--r-- | src/libcore/num/dec2flt/algorithm.rs | 2 |
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(). |
