@@ -459,15 +459,15 @@ macro_rules! int_impl {
459459 }
460460 }
461461
462- /// Wrapping (modular) division. Computes `floor( self / other) `,
462+ /// Wrapping (modular) division. Computes `self / other`,
463463 /// wrapping around at the boundary of the type.
464464 ///
465465 /// The only case where such wrapping can occur is when one
466466 /// divides `MIN / -1` on a signed type (where `MIN` is the
467467 /// negative minimal value for the type); this is equivalent
468468 /// to `-MIN`, a positive value that is too large to represent
469469 /// in the type. In such a case, this function returns `MIN`
470- /// itself..
470+ /// itself.
471471 #[ stable( feature = "num_wrapping" , since = "1.2.0" ) ]
472472 #[ inline( always) ]
473473 pub fn wrapping_div( self , rhs: Self ) -> Self {
@@ -1031,15 +1031,15 @@ macro_rules! uint_impl {
10311031 }
10321032 }
10331033
1034- /// Wrapping (modular) division. Computes `floor( self / other) `,
1034+ /// Wrapping (modular) division. Computes `self / other`,
10351035 /// wrapping around at the boundary of the type.
10361036 ///
10371037 /// The only case where such wrapping can occur is when one
10381038 /// divides `MIN / -1` on a signed type (where `MIN` is the
10391039 /// negative minimal value for the type); this is equivalent
10401040 /// to `-MIN`, a positive value that is too large to represent
10411041 /// in the type. In such a case, this function returns `MIN`
1042- /// itself..
1042+ /// itself.
10431043 #[ stable( feature = "num_wrapping" , since = "1.2.0" ) ]
10441044 #[ inline( always) ]
10451045 pub fn wrapping_div( self , rhs: Self ) -> Self {
0 commit comments