1
Fork 0

auto merge of #16152 : tshepang/rust/patch-1, r=alexcrichton

This commit is contained in:
bors 2014-08-01 07:56:06 +00:00
commit cd1216a054

View file

@ -418,7 +418,7 @@ pub trait Int: Primitive
(!self).count_ones()
}
/// Returns the number of leading zeros in the in the binary representation
/// Returns the number of leading zeros in the binary representation
/// of the integer.
///
/// # Example
@ -430,7 +430,7 @@ pub trait Int: Primitive
/// ```
fn leading_zeros(self) -> Self;
/// Returns the number of trailing zeros in the in the binary representation
/// Returns the number of trailing zeros in the binary representation
/// of the integer.
///
/// # Example