diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2017-03-28 23:57:28 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-03-29 07:14:29 +0200 |
commit | 69687aa829bc8bdcaf5468eb3dd0ada13700b7aa (patch) | |
tree | 564244011bcb19ef2157b0dac249aea3e1440cae /include/openssl/objects.h | |
parent | 7bd278957d27e09511520dabdc8696366ffb2b96 (diff) | |
download | openssl-new-69687aa829bc8bdcaf5468eb3dd0ada13700b7aa.tar.gz |
More typo fixes
Fix some comments too
[skip ci]
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3069)
Diffstat (limited to 'include/openssl/objects.h')
-rw-r--r-- | include/openssl/objects.h | 4 |
1 files changed, 2 insertions, 2 deletions
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. |