We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eb258e commit a72d465Copy full SHA for a72d465
math/src/unsigned_integer/element.rs
@@ -425,7 +425,7 @@ impl<const NUM_LIMBS: usize> UnsignedInteger<NUM_LIMBS> {
425
/// Creates an `UnsignedInteger` from a hexstring. It can contain `0x` or not.
426
/// Returns an `CreationError::InvalidHexString`if the value is not a hexstring.
427
/// Returns a `CreationError::EmptyString` if the input string is empty.
428
- /// Returns a `CreationError::HexStringIsTooBig` if the the imput hex string is bigger
+ /// Returns a `CreationError::HexStringIsTooBig` if the the input hex string is bigger
429
/// than the maximum amount of characters for this element.
430
pub fn from_hex(value: &str) -> Result<Self, CreationError> {
431
let mut string = value;
0 commit comments