diff options
| author | Fabian Zaiser <fabian.zaiser@gmail.com> | 2018-03-28 01:41:40 +0200 |
|---|---|---|
| committer | Fabian Zaiser <fabian.zaiser@gmail.com> | 2018-03-28 01:41:40 +0200 |
| commit | ece87c3f4e76fd996dbbbaf8202f2adecff06c1e (patch) | |
| tree | 0c4cb1ceeb9dd8e14f897a901c229ab90b2dd114 /src/libstd/f64.rs | |
| parent | 9255bbd035ee032f1ccd47fcf93c87f7bc2e4bad (diff) | |
| download | rust-ece87c3f4e76fd996dbbbaf8202f2adecff06c1e.tar.gz rust-ece87c3f4e76fd996dbbbaf8202f2adecff06c1e.zip | |
Address nits and tidy errors.
Diffstat (limited to 'src/libstd/f64.rs')
| -rw-r--r-- | src/libstd/f64.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/f64.rs b/src/libstd/f64.rs index 320655c443c..a9585670ad0 100644 --- a/src/libstd/f64.rs +++ b/src/libstd/f64.rs @@ -317,9 +317,9 @@ impl f64 { /// Calculates Euclidean division, the matching method for `mod_euc`. /// - /// This computes the integer n such that + /// This computes the integer `n` such that /// `self = n * rhs + self.mod_euc(rhs)`. - /// In other words, the result is `self / rhs` rounded to the integer n + /// In other words, the result is `self / rhs` rounded to the integer `n` /// such that `self >= n * rhs`. /// /// ``` |
