File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
math/src/unsigned_integer Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -425,7 +425,8 @@ impl<const NUM_LIMBS: usize> UnsignedInteger<NUM_LIMBS> {
425
425
/// Creates an `UnsignedInteger` from a hexstring. It can contain `0x` or not.
426
426
/// Returns an `CreationError::InvalidHexString`if the value is not a hexstring.
427
427
/// Returns a `CreationError::EmptyString` if the input string is empty.
428
- /// Returns a `CreationError::HexStringIsTooBig` if the the imput hex string is bigger than the maximum amount of characters for this element.
428
+ /// Returns a `CreationError::HexStringIsTooBig` if the the imput hex string is bigger
429
+ /// than the maximum amount of characters for this element.
429
430
pub fn from_hex ( value : & str ) -> Result < Self , CreationError > {
430
431
let mut string = value;
431
432
let mut char_iterator = value. chars ( ) ;
You can’t perform that action at this time.
0 commit comments