doc/man3/EVP_PKEY_CTX_new.pod: change markup according to conventions
authorRichard Levitte <levitte@openssl.org>
Tue, 15 Oct 2019 14:55:00 +0000 (16:55 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 16 Oct 2019 13:02:05 +0000 (15:02 +0200)
Convention source is man-pages(7)

Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10184)

doc/man3/EVP_PKEY_CTX_new.pod

index 7df650c12a68940ba46487236c5156d1e23b5691..de7f439da549cf57a254065d2cea2f0a1b4d4f11 100644 (file)
@@ -20,10 +20,10 @@ EVP_PKEY_CTX_dup, EVP_PKEY_CTX_free
 =head1 DESCRIPTION
 
 The EVP_PKEY_CTX_new() function allocates public key algorithm context using
-the algorithm specified in B<pkey> and ENGINE B<e>.
+the algorithm specified in I<pkey> and ENGINE I<e>.
 
 The EVP_PKEY_CTX_new_id() function allocates public key algorithm context
-using the algorithm specified by B<id> and ENGINE B<e>.
+using the algorithm specified by I<id> and ENGINE I<e>.
 
 The EVP_PKEY_CTX_new_provided() function allocates a public key
 algorithm context using the algorithm specified by I<name> and the
@@ -36,10 +36,10 @@ used when no B<EVP_PKEY> structure is associated with the operations,
 for example during parameter generation or key generation for some
 algorithms.
 
-EVP_PKEY_CTX_dup() duplicates the context B<ctx>.
+EVP_PKEY_CTX_dup() duplicates the context I<ctx>.
 
-EVP_PKEY_CTX_free() frees up the context B<ctx>.
-If B<ctx> is NULL, nothing is done.
+EVP_PKEY_CTX_free() frees up the context I<ctx>.
+If I<ctx> is NULL, nothing is done.
 
 =head1 NOTES