diff options
| author | Tobias Bucher <tobiasbucher5991@gmail.com> | 2014-10-29 10:08:36 +0100 |
|---|---|---|
| committer | Tobias Bucher <tobiasbucher5991@gmail.com> | 2014-10-29 10:08:36 +0100 |
| commit | 793a73315214a8932e4b07c08dcfb9dc5526b5a9 (patch) | |
| tree | 4d43073f11f1342829bc872ddda09cd6d7b8149a /src/libcore | |
| parent | 124508dea1caf213886e5e1a02d425cac8dd0b54 (diff) | |
| download | rust-793a73315214a8932e4b07c08dcfb9dc5526b5a9.tar.gz rust-793a73315214a8932e4b07c08dcfb9dc5526b5a9.zip | |
Fix `core::num::CheckedDiv::checked_div` documentation
The "/" was probably generated by a `gq` in vim.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/num/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 3dceb42e206..1409677b951 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -1353,7 +1353,7 @@ checked_impl!(CheckedMul, checked_mul, i64, intrinsics::i64_mul_with_overflow) /// wrapping around on underflow and overflow. pub trait CheckedDiv: Div<Self, Self> { /// Divides two numbers, checking for underflow, overflow and division by zero. If any of that - /// happens, / `None` is returned. + /// happens, `None` is returned. /// /// # Example /// |
