From 86768f1d4c102ff82321fdae2e2f2e278d57f3c7 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 13 Apr 2022 14:55:24 -0400 Subject: [PATCH] [ruby/openssl] Fix formatting in docs The + tag can only be used for single words. For multiple words the tag has to be used. https://github.com/ruby/openssl/commit/cf2f019c3e --- ext/openssl/ossl_asn1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. UNIVERSAL_TAG_NAME[2] = "INTEGER" and OpenSSL::ASN1::INTEGER = 2. * * == Example usage *