Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-01-11 17:06:49 +0300
committerTobias Nießen <tniessen@tnie.de>2022-01-13 19:28:12 +0300
commit5d838d3f34b2367351ba16e2be82b3860988aa99 (patch)
treeb7e3b44352c6f70c31ff9b2162cffee90cc2b02f /doc/api/tls.md
parent4b1ee041538987223311be5d818a4e3441aa9eed (diff)
doc: remove extraneous colon in legacy subject
PR-URL: https://github.com/nodejs/node/pull/41477 Refs: https://github.com/nodejs/node/pull/24358 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'doc/api/tls.md')
-rw-r--r--doc/api/tls.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 71e93c957cf..86a69099879 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -1146,7 +1146,7 @@ certificate.
* `raw` {Buffer} The DER encoded X.509 certificate data.
* `subject` {Object} The certificate subject, described in terms of
- Country (`C:`), StateOrProvince (`ST`), Locality (`L`), Organization (`O`),
+ Country (`C`), StateOrProvince (`ST`), Locality (`L`), Organization (`O`),
OrganizationalUnit (`OU`), and CommonName (`CN`). The CommonName is typically
a DNS name with TLS certificates. Example:
`{C: 'UK', ST: 'BC', L: 'Metro', O: 'Node Fans', OU: 'Docs', CN: 'example.com'}`.