aboutsummaryrefslogtreecommitdiff
path: root/include/openssl/objects.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/openssl/objects.h')
-rw-r--r--include/openssl/objects.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/objects.h b/include/openssl/objects.h
index b554add..265d8e5 100644
--- a/include/openssl/objects.h
+++ b/include/openssl/objects.h
@@ -91,7 +91,7 @@ const void *OBJ_bsearch_ex_(const void *key, const void *base, int num,
* const void *a_;
* const nid_triple const *a = a_;
*
- * The assignement discards a const because what you really want is:
+ * The assignment discards a const because what you really want is:
*
* const int const * const *a = a_;
*
@@ -99,7 +99,7 @@ const void *OBJ_bsearch_ex_(const void *key, const void *base, int num,
* which breaks comparison functions.
*
* Thus we end up having to cast, sadly, or unpack the
- * declarations. Or, as I finally did in this case, delcare nid_triple
+ * declarations. Or, as I finally did in this case, declare nid_triple
* to be a struct, which it should have been in the first place.
*
* Ben, August 2008.