File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -113,8 +113,8 @@ macro_rules! impl_uint_concat_split_even {
113113        } 
114114
115115        impl  Uint <{  <$name>:: LIMBS  / 2  } > { 
116-             /// Concatenate the two values, with `self` as most  significant and `rhs`  
117- /// as the least  significant. 
116+             /// Concatenate the two values, with `self` as least  significant and `hi` as the most  
117+ /// significant. 
118118pub  const  fn  concat( & self ,  hi:  & Uint <{  <$name>:: LIMBS  / 2  } >)  -> $name { 
119119                $crate:: uint:: concat:: concat_mixed( self ,  hi) 
120120            } 
@@ -133,8 +133,7 @@ macro_rules! impl_uint_concat_split_even {
133133        } 
134134
135135        impl  $name { 
136-             /// Split this number in half, returning its high and low components 
137- /// respectively. 
136+             /// Split this number in half, returning its low and high components respectively. 
138137pub  const  fn  split( & self )  -> ( Uint <{  <$name>:: LIMBS  / 2  } >,  Uint <{  <$name>:: LIMBS  / 2  } >)  { 
139138                $crate:: uint:: split:: split_mixed( self ) 
140139            } 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments