aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2022-04-13 14:55:24 -0400
committerPeter Zhu <peter@peterzhu.ca>2022-04-13 14:55:24 -0400
commitcf2f019c3e8bf93bf8f1031c01cc9c3244df063c (patch)
tree9fe264cc2cc8bd4522760bfe3bfe43f5d3f17377
parentbf198278bd384afe05bbbf47da85d1a8fb9608e8 (diff)
downloadruby-openssl-cf2f019c3e8bf93bf8f1031c01cc9c3244df063c.tar.gz
Fix formatting in docs
The + tag can only be used for single words. For multiple words the <tt> tag has to be used.
-rw-r--r--ext/openssl/ossl_asn1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_asn1.c b/ext/openssl/ossl_asn1.c
index a61d3eef..0d3fa9ad 100644
--- a/ext/openssl/ossl_asn1.c
+++ b/ext/openssl/ossl_asn1.c
@@ -1522,7 +1522,7 @@ Init_ossl_asn1(void)
*
* An Array that stores the name of a given tag number. These names are
* the same as the name of the tag constant that is additionally defined,
- * e.g. +UNIVERSAL_TAG_NAME[2] = "INTEGER"+ and +OpenSSL::ASN1::INTEGER = 2+.
+ * e.g. <tt>UNIVERSAL_TAG_NAME[2] = "INTEGER"</tt> and <tt>OpenSSL::ASN1::INTEGER = 2</tt>.
*
* == Example usage
*