X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=include%2Fopenssl%2Fobjects.h;h=265d8e5c2fd684dc5ca84c79ec55be4d7c0273c1;hb=69687aa829bc8bdcaf5468eb3dd0ada13700b7aa;hp=b554addbc0d267b5b4ccea1123594d31fe24d40e;hpb=7bd278957d27e09511520dabdc8696366ffb2b96;p=openssl.git diff --git a/include/openssl/objects.h b/include/openssl/objects.h index b554addbc0..265d8e5c2f 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.