Skip to content

Commit

Permalink
doc: remove unnecessary bind(this)
Browse files Browse the repository at this point in the history
PR-URL: nodejs#4797
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chris Dickinson <chris@neversaw.us>
Reviewed-By: Roman Reiss <me@silverwind.io>
  • Loading branch information
wKich authored and Michael Scovetta committed Apr 2, 2016
1 parent 9dadd59 commit 594785b
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 594785b

Please sign in to comment.