Skip to content

Commit

Permalink
Merge pull request #311 from dlau/patch-1
Browse files Browse the repository at this point in the history
Clarify event call order in abort case
  • Loading branch information
felixge committed Oct 15, 2014
2 parents 5bf869a + 9786f80 commit 302a7af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -249,7 +249,7 @@ form.on('error', function(err) {
#### 'aborted'


Emitted when the request was aborted by the user. Right now this can be due to a 'timeout' or 'close' event on the socket. In the future there will be a separate 'timeout' event (needs a change in the node core).
Emitted when the request was aborted by the user. Right now this can be due to a 'timeout' or 'close' event on the socket. After this event is emitted, an `error` event will follow. In the future there will be a separate 'timeout' event (needs a change in the node core).
```javascript
form.on('aborted', function() {
});
Expand Down

0 comments on commit 302a7af

Please sign in to comment.