summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMartin Olsson <martin@minimum.se>2014-08-19 10:42:52 -0400
committerRich Salz <rsalz@akamai.com>2014-08-19 11:09:33 -0400
commit1afd7fa97c5445b18ce8afe6f81b932b2c217a5f (patch)
tree439f102d784907909ba705e030e852f7f728bc8b /doc
parent0df043f608047020740b1b5777c4f12741dc2104 (diff)
RT2513: Fix typo's paramter-->parameter
I also found a couple of others (padlock and signinit) and fixed them. Reviewed-by: Emilia Kasper <emilia@openssl.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/EVP_PKEY_cmp.pod2
-rw-r--r--doc/crypto/EVP_SignInit.pod2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/EVP_PKEY_cmp.pod b/doc/crypto/EVP_PKEY_cmp.pod
index 0ff027c0d5..94fcf66ce1 100644
--- a/doc/crypto/EVP_PKEY_cmp.pod
+++ b/doc/crypto/EVP_PKEY_cmp.pod
@@ -26,7 +26,7 @@ B<from> to key B<to>.
The function EVP_PKEY_cmp_parameters() compares the parameters of keys
B<a> and B<b>.
-The function EVP_PKEY_cmp() compares the public key components and paramters
+The function EVP_PKEY_cmp() compares the public key components and parameters
(if present) of keys B<a> and B<b>.
=head1 NOTES
diff --git a/doc/crypto/EVP_SignInit.pod b/doc/crypto/EVP_SignInit.pod
index 14ecc775af..06d02a5fca 100644
--- a/doc/crypto/EVP_SignInit.pod
+++ b/doc/crypto/EVP_SignInit.pod
@@ -31,7 +31,7 @@ same B<ctx> to include additional data.
EVP_SignFinal() signs the data in B<ctx> using the private key B<pkey> and
places the signature in B<sig>. B<sig> must be at least EVP_PKEY_size(pkey)
-bytes in size. B<s> is an OUT paramter, and not used as an IN parameter.
+bytes in size. B<s> is an OUT parameter, and not used as an IN parameter.
The number of bytes of data written (i.e. the length of the signature)
will be written to the integer at B<s>, at most EVP_PKEY_size(pkey) bytes
will be written.