doc: remove unnecessary bind(this)

PR-URL: https://github.com/nodejs/node/pull/4797
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chris Dickinson <chris@neversaw.us>
Reviewed-By: Roman Reiss <me@silverwind.io>
This commit is contained in:
Dmitriy Lazarev 2016-01-21 21:21:16 +05:00 committed by Roman Reiss
parent 0a1859d33a
commit 2c426355df
1 changed files with 1 additions and 1 deletions

View File

@ -693,7 +693,7 @@ function MyThing(options) {
process.nextTick(() => {
this.startDoingStuff();
}.bind(this));
});
}
var thing = new MyThing();