Fix core::num::CheckedDiv::checked_div documentation

The "/" was probably generated by a `gq` in vim.
This commit is contained in:
Tobias Bucher
2014-10-29 10:08:36 +01:00
parent 124508dea1
commit 793a733152

View File

@@ -1353,7 +1353,7 @@ checked_impl!(CheckedMul, checked_mul, i64, intrinsics::i64_mul_with_overflow)
/// wrapping around on underflow and overflow. /// wrapping around on underflow and overflow.
pub trait CheckedDiv: Div<Self, Self> { pub trait CheckedDiv: Div<Self, Self> {
/// Divides two numbers, checking for underflow, overflow and division by zero. If any of that /// Divides two numbers, checking for underflow, overflow and division by zero. If any of that
/// happens, / `None` is returned. /// happens, `None` is returned.
/// ///
/// # Example /// # Example
/// ///