Fix typos found by codespell
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
Sun, 16 Jul 2023 05:56:05 +0000 (07:56 +0200)
committerPauli <pauli@openssl.org>
Tue, 18 Jul 2023 06:48:12 +0000 (16:48 +1000)
Only modify doc/man* in the openssl-3.1 branch.

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21465)

doc/man1/openssl-dhparam.pod.in
doc/man1/openssl-x509.pod.in
doc/man3/ASYNC_WAIT_CTX_new.pod
doc/man3/OSSL_SELF_TEST_new.pod
doc/man3/SSL_CTX_new.pod

index cdfc8995f2f49f6686bab1d7c86c6fa2cd22dff4..ef3cf66fe32160d4954e7f4c1928ed11853228ba 100644 (file)
@@ -87,7 +87,7 @@ I<numbits>. It must be the last option. If this option is present then
 the input file is ignored and parameters are generated instead. If
 this option is not present but a generator (B<-2>, B<-3> or B<-5>) is
 present, parameters are generated with a default length of 2048 bits.
-The minimim length is 512 bits. The maximum length is 10000 bits.
+The minimum length is 512 bits. The maximum length is 10000 bits.
 
 =item B<-noout>
 
index dd8f17154af96601063caf012d6597aa52804897..23923b1a984079a7745c849d149f2260470d15de 100644 (file)
@@ -478,7 +478,7 @@ unless the B<-new> option is given, which generates a certificate from scratch.
 
 =item B<-CAform> B<DER>|B<PEM>|B<P12>,
 
-The format for the CA certificate; unspecifed by default.
+The format for the CA certificate; unspecified by default.
 See L<openssl-format-options(1)> for details.
 
 =item B<-CAkey> I<filename>|I<uri>
index 328af9e53a64195ac7e602fc85fdded6723d162e..a98635c2a1ed1985f6aa44a4b84b8c29dddf8e67 100644 (file)
@@ -83,7 +83,7 @@ will be populated with the list of added and deleted fds respectively. Similarly
 to ASYNC_WAIT_CTX_get_all_fds() either of these can be NULL, but if they are not
 NULL then the caller is responsible for ensuring sufficient memory is allocated.
 
-Implementors of async aware code (e.g. engines) are encouraged to return a
+Implementers of async aware code (e.g. engines) are encouraged to return a
 stable fd for the lifetime of the B<ASYNC_WAIT_CTX> in order to reduce the
 "churn" of regularly changing fds - although no guarantees of this are provided
 to applications.
index b8fcf534f3ea2c266fc41b568f32259ba8131a67..d93e33ea229f089af3da72fbda80ce89ff918ed6 100644 (file)
@@ -22,7 +22,7 @@ OSSL_SELF_TEST_onend - functionality to trigger a callback during a self test
 
 =head1 DESCRIPTION
 
-These methods are intended for use by provider implementors, to display
+These methods are intended for use by provider implementers, to display
 diagnostic information during self testing.
 
 OSSL_SELF_TEST_new() allocates an opaque B<OSSL_SELF_TEST> object that has a
index 61de1a655164ad0c094e7518cd5718827c71b9e1..fb46cbca75ee936eb247e548b2eaf5faebf17548 100644 (file)
@@ -100,7 +100,7 @@ provide serialization of access for these cases.
 
 =head1 NOTES
 
-On session estabilishment, by default, no peer credentials verification is done.
+On session establishment, by default, no peer credentials verification is done.
 This must be explicitly requested, typically using L<SSL_CTX_set_verify(3)>.
 For verifying peer certificates many options can be set using various functions
 such as L<SSL_CTX_load_verify_locations(3)> and L<SSL_CTX_set1_param(3)>.