Fix spelling typos in lib.rs.

This commit is contained in:
Mac Mason 2016-12-13 14:21:20 -08:00
parent e0fc89ffc6
commit 8c4b3f5bd7
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ pub fn zero<T: Zero>() -> T {
Zero::zero()
}
/// Tests is a value is iqual to zero.
/// Tests if a value is equal to zero.
#[inline]
pub fn is_zero<T: Zero>(val: &T) -> bool {
val.is_zero()