Skip to content

Commit 793a733

Browse files
committed
Fix core::num::CheckedDiv::checked_div documentation
The "/" was probably generated by a `gq` in vim.
1 parent 124508d commit 793a733

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/num/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,7 @@ checked_impl!(CheckedMul, checked_mul, i64, intrinsics::i64_mul_with_overflow)
13531353
/// wrapping around on underflow and overflow.
13541354
pub trait CheckedDiv: Div<Self, Self> {
13551355
/// Divides two numbers, checking for underflow, overflow and division by zero. If any of that
1356-
/// happens, / `None` is returned.
1356+
/// happens, `None` is returned.
13571357
///
13581358
/// # Example
13591359
///

0 commit comments

Comments
 (0)