Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: fix, remove unnecessary bind(this)
  • Loading branch information
wKich committed Jan 21, 2016
commit 823a19238123a183bc4a12ac588712c8d1cd1a9b
2 changes: 1 addition & 1 deletion doc/api/process.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ but before any I/O has occurred.

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

var thing = new MyThing();
Expand Down