]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix typos found by codespell in openssl-3.3 doc
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
Sun, 21 Jul 2024 09:37:03 +0000 (11:37 +0200)
committerTomas Mraz <tomas@openssl.org>
Wed, 7 Aug 2024 17:08:54 +0000 (19:08 +0200)
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Paul Yang <kaishen.yy@antfin.com>
(Merged from https://github.com/openssl/openssl/pull/24950)

(cherry picked from commit 4b86dbb596c179b519dfb7ceb7e1d223556442c5)

doc/man3/OSSL_DECODER_CTX_new_for_pkey.pod
doc/man3/SSL_CTX_set_alpn_select_cb.pod

index 4b4443777ad70c78f045765dd2042ecbe5db914d..80f1d72cf1bdbee396d8f88b82c3a555746b6a47 100644 (file)
@@ -82,7 +82,7 @@ choice of preferred pass phrase callback form.  These are called indirectly,
 through an internal L<OSSL_PASSPHRASE_CALLBACK(3)> function.
 
 The internal L<OSSL_PASSPHRASE_CALLBACK(3)> function caches the pass phrase, to
-be re-used in all decodings that are performed in the same decoding run (for
+be reused in all decodings that are performed in the same decoding run (for
 example, within one L<OSSL_DECODER_from_bio(3)> call).
 
 =head2 Input Types
index a29557dd91d49b92ea573ce64df9becb7e3e0505..433fe994f7551ad1a03286183668969f7b4e31db 100644 (file)
@@ -80,7 +80,7 @@ least one valid (nonempty) protocol entry in the list.
 The SSL_select_next_proto() helper function can be useful from either the ALPN
 callback or the NPN callback (described below). If no match is found, the first
 item in B<client>, B<client_len> is returned in B<out>, B<outlen> and
-B<OPENSSL_NPN_NO_OVERLAP> is returned. This can be useful when implementating
+B<OPENSSL_NPN_NO_OVERLAP> is returned. This can be useful when implementing
 the NPN callback. In the ALPN case, the value returned in B<out> and B<outlen>
 must be ignored if B<OPENSSL_NPN_NO_OVERLAP> has been returned from
 SSL_select_next_proto().