summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-04-06 14:00:55 +0200
committerRichard Levitte <levitte@openssl.org>2020-04-11 15:51:43 +0200
commitb93e2ec273f8a6e7165fddaae1fe75615c0edf5a (patch)
tree35e79c6d259323418144d00c638002f1bcf72f10
parente32e00ab200c83b138594292228d6bd26722bd95 (diff)
Fix some errors in documentation
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11476)
-rw-r--r--doc/internal/man3/OPENSSL_SA.pod (renamed from doc/internal/man3/DEFINE_SPARSE_ARRAY_OF.pod)4
-rw-r--r--doc/internal/man3/s2i_ASN1_UTF8STRING.pod6
2 files changed, 4 insertions, 6 deletions
diff --git a/doc/internal/man3/DEFINE_SPARSE_ARRAY_OF.pod b/doc/internal/man3/OPENSSL_SA.pod
index a78193c2e2..77f1a7b1c2 100644
--- a/doc/internal/man3/DEFINE_SPARSE_ARRAY_OF.pod
+++ b/doc/internal/man3/OPENSSL_SA.pod
@@ -2,15 +2,13 @@
=head1 NAME
-DEFINE_SPARSE_ARRAY_OF, ossl_sa_TYPE_new, ossl_sa_TYPE_free,
+OPENSSL_SA, ossl_sa_TYPE_new, ossl_sa_TYPE_free,
ossl_sa_TYPE_free_leaves, ossl_sa_TYPE_num, ossl_sa_TYPE_doall,
ossl_sa_TYPE_doall_arg, ossl_sa_TYPE_get, ossl_sa_TYPE_set
- sparse array container
=head1 SYNOPSIS
-=for openssl generic
-
#include "crypto/sparse_array.h"
typedef struct sparse_array_st OPENSSL_SA;
diff --git a/doc/internal/man3/s2i_ASN1_UTF8STRING.pod b/doc/internal/man3/s2i_ASN1_UTF8STRING.pod
index c5b434a5b5..9b806eb80b 100644
--- a/doc/internal/man3/s2i_ASN1_UTF8STRING.pod
+++ b/doc/internal/man3/s2i_ASN1_UTF8STRING.pod
@@ -3,12 +3,12 @@
=head1 NAME
i2s_ASN1_UTF8STRING,
-s2i_ASN1_UTF8STRING,
+s2i_ASN1_UTF8STRING
- convert objects from/to ASN.1/string representation
=head1 SYNOPSIS
-=for openssl generic
+ #include "crypto/x509v3.h"
char *i2s_ASN1_UTF8STRING(X509V3_EXT_METHOD *method,
ASN1_UTF8STRING *utf8);
@@ -22,7 +22,7 @@ representation. This function is used for B<X509v3> extentions.
=head1 NOTES
-The letters B<i> and B<s> in B<i2s_ASN1_UTF8STRING>() stand for
+The letters B<i> and B<s> in i2s_ASN1_UTF8STRING() stand for
"internal" (that is, an internal C structure) and string respectively.
So B<i2s_ASN1_UTF8STRING>() converts from internal to string.