Skip to content

Commit 6eb258e

Browse files
authored
Update math/src/field/element.rs
1 parent c09d05f commit 6eb258e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

math/src/field/element.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ impl<F: IsPrimeField> FieldElement<F> {
509509
/// Creates a `FieldElement` from a hexstring. It can contain `0x` or not.
510510
/// Returns an `CreationError::InvalidHexString`if the value is not a hexstring.
511511
/// Returns a `CreationError::EmptyString` if the input string is empty.
512-
/// Returns a `CreationError::HexStringIsTooBig` if the the imput hex string is bigger
512+
/// Returns a `CreationError::HexStringIsTooBig` if the the input hex string is bigger
513513
/// than the maximum amount of characters for this element.
514514
pub fn from_hex(hex_string: &str) -> Result<Self, CreationError> {
515515
if hex_string.is_empty() {

0 commit comments

Comments
 (0)