mirror of https://github.com/nodejs/node.git
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:
parent
0a1859d33a
commit
2c426355df
|
@ -693,7 +693,7 @@ function MyThing(options) {
|
|||
|
||||
process.nextTick(() => {
|
||||
this.startDoingStuff();
|
||||
}.bind(this));
|
||||
});
|
||||
}
|
||||
|
||||
var thing = new MyThing();
|
||||
|
|
Loading…
Reference in New Issue