Skip to content

Commit 2c42635

Browse files
wKichsilverwind
authored andcommitted
doc: remove unnecessary bind(this)
PR-URL: #4797 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Chris Dickinson <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
1 parent 0a1859d commit 2c42635

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/process.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ function MyThing(options) {
693693

694694
process.nextTick(() => {
695695
this.startDoingStuff();
696-
}.bind(this));
696+
});
697697
}
698698

699699
var thing = new MyThing();

0 commit comments

Comments
 (0)