From 4dc323f019f2b9e1a660a9ba707d0bddaa470416 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Fri, 1 Aug 2014 02:43:51 +0200 Subject: [PATCH] doc: fix typos in std::num::Int --- src/libcore/num/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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