From b1e68cb8e68d5d7ef8ba15c8d8a608c42b7803f6 Mon Sep 17 00:00:00 2001 From: Jan Xie Date: Thu, 18 Jul 2019 08:35:42 +0800 Subject: [PATCH] Fix typo in secp256k1_preallocated.h --- include/secp256k1_preallocated.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/secp256k1_preallocated.h b/include/secp256k1_preallocated.h index 0fb64a5..a9ae15d 100644 --- a/include/secp256k1_preallocated.h +++ b/include/secp256k1_preallocated.h @@ -14,12 +14,12 @@ extern "C" { * * Context objects created by functions in this module can be used like contexts * objects created by functions in secp256k1.h, i.e., they can be passed to any - * API function that excepts a context object (see secp256k1.h for details). The + * API function that expects a context object (see secp256k1.h for details). The * only exception is that context objects created by functions in this module * must be destroyed using secp256k1_context_preallocated_destroy (in this * module) instead of secp256k1_context_destroy (in secp256k1.h). * - * It is guaranteed that functions in by this module will not call malloc or its + * It is guaranteed that functions in this module will not call malloc or its * friends realloc, calloc, and free. */