diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 48a3db4258f2b..53491cf21425e 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -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