Skip to content

Commit 19ed619

Browse files
wKichrvagg
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 5129930 commit 19ed619

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/process.markdown

+1-1
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)