Skip to content

Commit a72d465

Browse files
authored
Update math/src/unsigned_integer/element.rs
1 parent 6eb258e commit a72d465

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

math/src/unsigned_integer/element.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ impl<const NUM_LIMBS: usize> UnsignedInteger<NUM_LIMBS> {
425425
/// Creates an `UnsignedInteger` from a hexstring. It can contain `0x` or not.
426426
/// Returns an `CreationError::InvalidHexString`if the value is not a hexstring.
427427
/// Returns a `CreationError::EmptyString` if the input string is empty.
428-
/// Returns a `CreationError::HexStringIsTooBig` if the the imput hex string is bigger
428+
/// Returns a `CreationError::HexStringIsTooBig` if the the input hex string is bigger
429429
/// than the maximum amount of characters for this element.
430430
pub fn from_hex(value: &str) -> Result<Self, CreationError> {
431431
let mut string = value;

0 commit comments

Comments
 (0)