Skip to content

Commit

Permalink
doc: remove unnecessary bind(this)
Browse files Browse the repository at this point in the history
PR-URL: #4797
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Chris Dickinson <[email protected]>
Reviewed-By: Roman Reiss <[email protected]>
  • Loading branch information
wKich authored and rvagg committed Feb 8, 2016
1 parent 5129930 commit 19ed619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ function MyThing(options) {

process.nextTick(() => {
this.startDoingStuff();
}.bind(this));
});
}

var thing = new MyThing();
Expand Down

0 comments on commit 19ed619

Please sign in to comment.