From 65af114267b35996a006bb9c9f2e6de087e48687 Mon Sep 17 00:00:00 2001 From: Adam Brunner Date: Tue, 22 Nov 2016 10:03:04 +0100 Subject: [PATCH] doc: "util" is not needed to extend ES6 classes PR-URL: https://github.com/nodejs/node/pull/9737 Reviewed-By: Colin Ihrig Reviewed-By: Italo A. Casas Reviewed-By: Roman Reiss Reviewed-By: Luigi Pinca --- doc/api/util.md | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/api/util.md b/doc/api/util.md index 3e4a4b1d39fd82..a8fded6b2db042 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -180,7 +180,6 @@ stream.write('It works!'); // Received data: "It works!" ES6 example using `class` and `extends` ```js -const util = require('util'); const EventEmitter = require('events'); class MyStream extends EventEmitter {