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:
authorNick Schonning <nschonni@gmail.com>2019-08-29 16:28:03 +0300
committerRich Trott <rtrott@gmail.com>2019-09-01 01:31:13 +0300
commit9ab1e07774b0c38a66e29f4b0b257ded8ee04d08 (patch)
tree4aa8dbb551d8baa96a6c22e44eb9a39e73f579bf /doc/api/https.md
parentee8f02b0d752ecf2dfa044deb246e75283d1ca1d (diff)
doc: add blanks around code fences
Addresses Markdownlint MD031 rule warnings PR-URL: https://github.com/nodejs/node/pull/29366 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: David Carlier <devnexen@gmail.com>
Diffstat (limited to 'doc/api/https.md')
-rw-r--r--doc/api/https.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/https.md b/doc/api/https.md
index 4b32ff087af..d396c8a70da 100644
--- a/doc/api/https.md
+++ b/doc/api/https.md
@@ -255,6 +255,7 @@ req.on('error', (e) => {
});
req.end();
```
+
Example using options from [`tls.connect()`][]:
```js