From a143a8135132bfd18794caa106a75a104afbaa96 Mon Sep 17 00:00:00 2001 From: Vinay Hiremath Date: Tue, 4 Apr 2017 14:17:12 -0700 Subject: [PATCH] doc: fix string interpolation in Stream 'finish' --- doc/api/stream.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index 23b8059ed99329..78c87d26caf70f 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -281,7 +281,7 @@ has been called, and all data has been flushed to the underlying system. ```js const writer = getWritableStreamSomehow(); for (var i = 0; i < 100; i ++) { - writer.write('hello, #${i}!\n'); + writer.write(`hello, #${i}!\n`); } writer.end('This is the end\n'); writer.on('finish', () => {