1
Fork 0

Fix Duration::checked_mul documentation

This commit is contained in:
Eugene Bulkin 2016-09-13 17:32:24 -07:00
parent 606cdede0d
commit 07b41b5555

View file

@ -164,7 +164,7 @@ impl Duration {
}
}
/// Checked integer multiplication. Computes `self * other`, returning
/// Checked duration multiplication. Computes `self * other`, returning
/// `None` if underflow or overflow occurred.
///
/// # Examples