Fix signed int checked_neg docs

This commit is contained in:
Oliver Middleton 2016-02-14 17:44:22 +00:00
parent f3619ce026
commit 36c00f8107

View File

@ -479,7 +479,7 @@ macro_rules! int_impl {
}
}
/// Checked negation. Computes `!self`, returning `None` if `self ==
/// Checked negation. Computes `-self`, returning `None` if `self ==
/// MIN`.
///
/// # Examples