From de7e398dfaa6c3653c5f1c2760ade4b6f3d2f5c9 Mon Sep 17 00:00:00 2001 From: Veres Lajos Date: Mon, 10 Aug 2015 22:05:52 +0100 Subject: [PATCH] small typo fix --- src/field.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field.h b/src/field.h index 41b280892d9..2b2e0ebee25 100644 --- a/src/field.h +++ b/src/field.h @@ -62,7 +62,7 @@ static int secp256k1_fe_equal_var(const secp256k1_fe_t *a, const secp256k1_fe_t /** Compare two field elements. Requires both inputs to be normalized */ static int secp256k1_fe_cmp_var(const secp256k1_fe_t *a, const secp256k1_fe_t *b); -/** Set a field element equal to 32-byte big endian value. If succesful, the resulting field element is normalized. */ +/** Set a field element equal to 32-byte big endian value. If successful, the resulting field element is normalized. */ static int secp256k1_fe_set_b32(secp256k1_fe_t *r, const unsigned char *a); /** Convert a field element to a 32-byte big endian value. Requires the input to be normalized */