From 793a73315214a8932e4b07c08dcfb9dc5526b5a9 Mon Sep 17 00:00:00 2001 From: Tobias Bucher Date: Wed, 29 Oct 2014 10:08:36 +0100 Subject: [PATCH] Fix `core::num::CheckedDiv::checked_div` documentation The "/" was probably generated by a `gq` in vim. --- src/libcore/num/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { /// Divides two numbers, checking for underflow, overflow and division by zero. If any of that - /// happens, / `None` is returned. + /// happens, `None` is returned. /// /// # Example ///