Skip to content
This repository has been archived by the owner on Jul 6, 2018. It is now read-only.

Commit

Permalink
http2: fix linting errors in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell committed May 2, 2017
1 parent 76e21a4 commit 7e862f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/http2-implementation-notes.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ const server = http2.createSecureServer(options, (req, res) => {
fs.createReadStream('/some/image/jpg').pipe(res);
});

res.end('<html><head><link rel="preload" href="/favicon.ico"/></head><body><h1>this is some data</h2><img src="/image.jpg" /></body></html>');
res.end('<html><head><link rel="preload" href="/favicon.ico"/></head>' +
'<body><h1>this is some data</h2><img src="/image.jpg" /></body>' +
'</html>');

});
server.listen(8000);
Expand Down

0 comments on commit 7e862f3

Please sign in to comment.