diff options
author | Nick Schonning <nschonni@gmail.com> | 2019-08-29 09:28:03 -0400 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2019-08-31 15:31:13 -0700 |
commit | 9ab1e07774b0c38a66e29f4b0b257ded8ee04d08 (patch) | |
tree | 4aa8dbb551d8baa96a6c22e44eb9a39e73f579bf /doc/api/zlib.md | |
parent | ee8f02b0d752ecf2dfa044deb246e75283d1ca1d (diff) | |
download | node-new-9ab1e07774b0c38a66e29f4b0b257ded8ee04d08.tar.gz |
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/zlib.md')
-rw-r--r-- | doc/api/zlib.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/zlib.md b/doc/api/zlib.md index 08149db103..19a0f7232e 100644 --- a/doc/api/zlib.md +++ b/doc/api/zlib.md @@ -230,6 +230,7 @@ quality, but can be useful when data needs to be available as soon as possible. In the following example, `flush()` is used to write a compressed partial HTTP response to the client: + ```js const zlib = require('zlib'); const http = require('http'); |