Fix typo 'is an error occurred' in documentation
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Fri, 11 May 2018 14:58:44 +0000 (16:58 +0200)
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Fri, 11 May 2018 15:03:44 +0000 (17:03 +0200)
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6231)

doc/crypto/BIO_s_fd.pod
doc/crypto/CMS_get0_SignerInfos.pod
doc/crypto/CMS_get1_ReceiptRequest.pod
doc/crypto/OBJ_nid2obj.pod
doc/crypto/SMIME_read_PKCS7.pod

index b1de1d1015496b587f2a4ac690389892aa1721c3..2830134a682f9d0fab285c2ae96127b7eeee5cd8 100644 (file)
@@ -60,7 +60,7 @@ BIO_s_fd() returns the file descriptor BIO method.
 
 BIO_reset() returns zero for success and -1 if an error occurred.
 BIO_seek() and BIO_tell() return the current file position or -1
-is an error occurred. These values reflect the underlying lseek()
+if an error occurred. These values reflect the underlying lseek()
 behaviour.
 
 BIO_set_fd() always returns 1.
index b46c0e07ab3dac72fa435bc6dec2d7f7aeeb06b8..69fde81062471dceec4df2f7651895a647b82306 100644 (file)
@@ -51,7 +51,7 @@ CMS_SignerInfo_set1_signer_cert().
 
 Once all signer certificates have been set CMS_verify() can be used.
 
-Although CMS_get0_SignerInfos() can return NULL is an error occur B<or> if
+Although CMS_get0_SignerInfos() can return NULL if an error occurs B<or> if
 there are no signers this is not a problem in practice because the only
 error which can occur is if the B<cms> structure is not of type signedData
 due to application error.
index f546376a1e6863e08bfd95cf3f87c1b28dbe3cd4..7a483ecd5a579ec63140ed46f4cb979d747af624 100644 (file)
@@ -48,7 +48,7 @@ CMS_verify().
 CMS_ReceiptRequest_create0() returns a signed receipt request structure or 
 NULL if an error occurred.
 
-CMS_add1_ReceiptRequest() returns 1 for success or 0 is an error occurred.
+CMS_add1_ReceiptRequest() returns 1 for success or 0 if an error occurred.
 
 CMS_get1_ReceiptRequest() returns 1 is a signed receipt request is found and
 decoded. It returns 0 if a signed receipt request is not present and -1 if
index b8d289673deedc16306bea8d99f502819010e325..c870bd45637da66c2a196bcdb7354d1b027e83ab 100644 (file)
@@ -42,7 +42,7 @@ constants.
 
 OBJ_nid2obj(), OBJ_nid2ln() and OBJ_nid2sn() convert the NID B<n> to 
 an ASN1_OBJECT structure, its long name and its short name respectively,
-or B<NULL> is an error occurred.
+or B<NULL> if an error occurred.
 
 OBJ_obj2nid(), OBJ_ln2nid(), OBJ_sn2nid() return the corresponding NID
 for the object B<o>, the long name <ln> or the short name <sn> respectively
index 9d46715941800327f26e0386781430468e840287..7cdca1e73f8a3afd90b748d149c1984580d6d74a 100644 (file)
@@ -57,7 +57,7 @@ streaming single pass option should be available.
 =head1 RETURN VALUES
 
 SMIME_read_PKCS7() returns a valid B<PKCS7> structure or B<NULL>
-is an error occurred. The error can be obtained from ERR_get_error(3).
+if an error occurred. The error can be obtained from ERR_get_error(3).
 
 =head1 SEE ALSO