summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2023-12-22 14:06:24 +0100
committerTomas Mraz <tomas@openssl.org>2023-12-29 10:14:25 +0100
commite0f47f88c7afffe97dba52830abb224c83957f70 (patch)
tree1ab11249666e0146770dd33e31f336394a54fbdb /doc
parent782a34f76f5255ea8b4e5c7e8e8faa62a075beee (diff)
Fix typos found by codespell in man pages
Reviewed-by: Paul Yang <kaishen.yy@antfin.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23131) (cherry picked from commit 7deb2b433a08706337d8520793702f78765ecf90)
Diffstat (limited to 'doc')
-rw-r--r--doc/man7/EVP_KDF-ARGON2.pod2
-rw-r--r--doc/man7/ossl-guide-tls-client-block.pod2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/man7/EVP_KDF-ARGON2.pod b/doc/man7/EVP_KDF-ARGON2.pod
index e2dfb6edbf..d41a3179b5 100644
--- a/doc/man7/EVP_KDF-ARGON2.pod
+++ b/doc/man7/EVP_KDF-ARGON2.pod
@@ -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.
diff --git a/doc/man7/ossl-guide-tls-client-block.pod b/doc/man7/ossl-guide-tls-client-block.pod
index ba59bd4ab3..8f72fe3a1c 100644
--- a/doc/man7/ossl-guide-tls-client-block.pod
+++ b/doc/man7/ossl-guide-tls-client-block.pod
@@ -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.