From cb09203a657fbdd5ac2692b65a029b30e76cb67d 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 bdc71590f4..962832c402 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();