diff options
| -rw-r--r-- | src/libcore/num/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 48a3db4258f..53491cf2142 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 |
