Browse Source

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>
v5.x
Dmitriy Lazarev 9 years ago
committed by Rod Vagg
parent
commit
19ed619cff
  1. 2
      doc/api/process.markdown

2
doc/api/process.markdown

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

Loading…
Cancel
Save