From c632241440ce1873464c11136d8e0bf2785a08f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 11 Jan 2022 15:06:49 +0100 Subject: [PATCH] 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 Reviewed-By: Richard Lau Reviewed-By: Tierney Cyren Reviewed-By: Benjamin Gruenbaum Reviewed-By: Luigi Pinca --- doc/api/tls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/tls.md b/doc/api/tls.md index 9545e08b9fb324..bae0f1bcb1e281 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'}`.