summaryrefslogtreecommitdiff
path: root/doc/api/tls.md
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-08-30 00:10:19 -0400
committerDaniel Bevenius <daniel.bevenius@gmail.com>2019-09-02 07:46:45 +0200
commit61d973affbf37ff4011e387a87b89f8c9984b20e (patch)
tree6d78e34de4142f2fd1c70d7e8f4d8a437eaee521 /doc/api/tls.md
parentc602b0a4e5df8de90299637aaef65c4cedae30ac (diff)
downloadandroid-node-v8-61d973affbf37ff4011e387a87b89f8c9984b20e.tar.gz
android-node-v8-61d973affbf37ff4011e387a87b89f8c9984b20e.tar.bz2
android-node-v8-61d973affbf37ff4011e387a87b89f8c9984b20e.zip
doc: escape elements swallowed as HTML in markdown
Addresses Markdownlint MD033 issues. Altering changlog should usually be avoided, but they don't render currently. PR-URL: https://github.com/nodejs/node/pull/29374 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/api/tls.md')
-rw-r--r--doc/api/tls.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/api/tls.md b/doc/api/tls.md
index 6741144151..90b377f5b5 100644
--- a/doc/api/tls.md
+++ b/doc/api/tls.md
@@ -1432,10 +1432,11 @@ changes:
PEM allows the option of private keys being encrypted. Encrypted keys will
be decrypted with `options.passphrase`. Multiple keys using different
algorithms can be provided either as an array of unencrypted key strings or
- buffers, or an array of objects in the form `{pem: <string|buffer>[,
- passphrase: <string>]}`. The object form can only occur in an array.
- `object.passphrase` is optional. Encrypted keys will be decrypted with
- `object.passphrase` if provided, or `options.passphrase` if it is not.
+ buffers, or an array of objects in the form
+ `{pem: <string|buffer>[, passphrase: <string>]}`. The object form can only
+ occur in an array. `object.passphrase` is optional. Encrypted keys will be
+ decrypted with `object.passphrase` if provided, or `options.passphrase` if
+ it is not.
* `maxVersion` {string} Optionally set the maximum TLS version to allow. One
of `TLSv1.3`, `TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified
along with the `secureProtocol` option, use one or the other.