diff --git a/.remarkrc b/.remarkrc index ae44c59b10..326e30a557 100644 --- a/.remarkrc +++ b/.remarkrc @@ -5,10 +5,8 @@ ["remark-lint-code-block-style", false], ["remark-lint-fenced-code-flag", false], ["remark-lint-first-heading-level", false], - ["remark-lint-heading-style", false], ["remark-lint-list-item-indent", false], ["remark-lint-maximum-line-length", false], - ["remark-lint-no-blockquote-without-marker", false], ["remark-lint-no-consecutive-blank-lines", false], ["remark-lint-no-inline-padding", false], ["remark-lint-no-multiple-toplevel-headings", false], diff --git a/src/documentation/0034-javascript-promises/index.md b/src/documentation/0034-javascript-promises/index.md index c36115625d..58d5a3ec37 100644 --- a/src/documentation/0034-javascript-promises/index.md +++ b/src/documentation/0034-javascript-promises/index.md @@ -85,6 +85,7 @@ getFile('/etc/passwd') ``` > In recent versions of Node.js, you won't have to do this manual conversion for a lot of the API. There is a promisifying function available in the [util module](https://nodejs.org/docs/latest-v11.x/api/util.html#util_util_promisify_original) that will do this for you, given that the function you're promisifying has the correct signature. + --- ## Consuming a promise