aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2022-04-13 14:55:24 -0400
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-07-08 23:18:24 +0900
commit86768f1d4c102ff82321fdae2e2f2e278d57f3c7 (patch)
tree8d1da49b5ef5dfff7490fa979aec2c3b3b3b8f54 /ext/openssl
parent4d6a29320dcd758c21944983da28b54037c200da (diff)
downloadruby-86768f1d4c102ff82321fdae2e2f2e278d57f3c7.tar.gz
[ruby/openssl] Fix formatting in docs
The + tag can only be used for single words. For multiple words the <tt> tag has to be used. https://github.com/ruby/openssl/commit/cf2f019c3e
Diffstat (limited to 'ext/openssl')
-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 a61d3eefb1..0d3fa9ad15 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
*