From d963beb9bd0bf8b442bfc1b04292a1c716153ec7 Mon Sep 17 00:00:00 2001 From: Kevin Simper Date: Tue, 17 Jul 2018 15:26:04 -0700 Subject: [PATCH] doc: add missing `require` to example in http2.md PR-URL: https://github.com/nodejs/node/pull/21858 Reviewed-By: Gus Caplan Reviewed-By: Rich Trott Reviewed-By: Daijiro Wachi Reviewed-By: James M Snell Reviewed-By: Vse Mozhet Byt Reviewed-By: Trivikram Kamat --- doc/api/http2.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/api/http2.md b/doc/api/http2.md index c7bd70d6570ecc..1b0d44a70586a3 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -1920,6 +1920,7 @@ instances. ```js const http2 = require('http2'); +const fs = require('fs'); const options = { key: fs.readFileSync('server-key.pem'),