From 784e62f3b2eb086bac881d5315672c3c38dc74f6 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Tue, 4 Nov 2014 02:28:15 -0800 Subject: [PATCH] Fix typo --- src/field_10x26_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/field_10x26_impl.h b/src/field_10x26_impl.h index 5a9df33..a567437 100644 --- a/src/field_10x26_impl.h +++ b/src/field_10x26_impl.h @@ -166,7 +166,7 @@ void static secp256k1_fe_set_b32(secp256k1_fe_t *r, const unsigned char *a) { #endif } -/** Convert a field element to a 32-bote big endian value. Requires the input to be normalized */ +/** Convert a field element to a 32-byte big endian value. Requires the input to be normalized */ void static secp256k1_fe_get_b32(unsigned char *r, const secp256k1_fe_t *a) { #ifdef VERIFY VERIFY_CHECK(a->normalized);