From 0887208290fd6a483ef1b6f93ffb6cc2f1b837cb Mon Sep 17 00:00:00 2001 From: Dmitriy Lazarev Date: Thu, 21 Jan 2016 21:21:16 +0500 Subject: [PATCH] doc: remove unnecessary bind(this) PR-URL: https://github.com/nodejs/node/pull/4797 Reviewed-By: Colin Ihrig Reviewed-By: Chris Dickinson Reviewed-By: Roman Reiss --- doc/api/process.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.markdown b/doc/api/process.markdown index bdc71590f41c9a..962832c402825d 100644 --- a/doc/api/process.markdown +++ b/doc/api/process.markdown @@ -627,7 +627,7 @@ but before any I/O has occurred. process.nextTick(() => { this.startDoingStuff(); - }.bind(this)); + }); } var thing = new MyThing();