Fix typos found by codespell in man pages
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
Fri, 22 Dec 2023 13:06:24 +0000 (14:06 +0100)
committerTomas Mraz <tomas@openssl.org>
Fri, 29 Dec 2023 09:13:01 +0000 (10:13 +0100)
Reviewed-by: Paul Yang <kaishen.yy@antfin.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23131)

doc/man1/openssl-rand.pod.in
doc/man3/OSSL_CMP_SRV_CTX_new.pod
doc/man7/EVP_KDF-ARGON2.pod
doc/man7/ossl-guide-tls-client-block.pod

index d4427a67246cee73998a7510c6e2359891abe681..7c07df3f147b3915a6aa35722009679429ccf8c4 100644 (file)
@@ -25,7 +25,7 @@ multiple of KiB/MiB/GiB/TiB respectively. Note that suffixes are case
 sensitive, and that the suffixes represent binary multiples
 (K = 1024 bytes, M = 1024*1024 bytes, etc).
 
-The string 'max' may be substituted for a numercial value in num, to request the
+The string 'max' may be substituted for a numerical value in num, to request the
 maximum number of bytes the CSPRNG can produce per instantiation.  Currently,
 this is restricted to 2^61 bytes as per NIST SP 800-90C.
 
index 66d722c291ea4a72ac73edf506ef674a20d04945..d1fd7e83b1ab84cfdd9a07fbb0e8f0ecf79e3727 100644 (file)
@@ -127,7 +127,7 @@ OSSL_CMP_SRV_CTX_init_trans() sets in I<srv_ctx> the optional callback
 functions for initiating delayed delivery and cleaning up a transaction.
 If the <delay> function is NULL then delivery of responses is never delayed.
 Otherwise I<delay> takes a custom server context and a request message as input.
-It must return 1 if delivery of the respecive response shall be delayed,
+It must return 1 if delivery of the respective response shall be delayed,
 0 if not, and -1 on error.
 If the <clean> function is NULL then no specific cleanup is performed.
 Otherwise I<clean> takes a custom server context and a transaction ID pointer
index e2dfb6edbf7830097ae1022fcb77d6912526391c..d41a3179b53b3203409a64d4bcfecd3e8d06af08 100644 (file)
@@ -21,7 +21,7 @@ primary seek to address trade-off (side-channel) attacks.
 
 Argon2id is a hybrid construction which, in the first two slices of the first
 pass, generates reference addresses data-independently as in Argon2i, whereas
-in later slices and next passess it generates them data-dependently as in
+in later slices and next passes it generates them data-dependently as in
 Argon2d.
 
 Sbox-hardened version Argon2ds is not supported.
index ba59bd4ab3c8131b11e5c86a0071ad76dbd292a2..8f72fe3a1c034ea83c3ebaf283f753b1697cc952 100644 (file)
@@ -348,7 +348,7 @@ connection.
 To send data to the server we use the L<SSL_write_ex(3)> function and to receive
 data from the server we use the L<SSL_read_ex(3)> function. In HTTP 1.0 the
 client always writes data first. Our HTTP request will include the hostname that
-we are connecting to. For simplicitly, we write the HTTP request in three
+we are connecting to. For simplicity, we write the HTTP request in three
 chunks. First we write the start of the request. Secondly we write the hostname
 we are sending the request to. Finally we send the end of the request.