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>
v4.x
Dmitriy Lazarev 9 years ago
committed by Myles Borins
parent
commit
cb09203a65
  1. 2
      doc/api/process.markdown

2
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();

Loading…
Cancel
Save