docs: http: fix docs for the 'close' event
authorBen Noordhuis <info@bnoordhuis.nl>
Wed, 2 Nov 2011 16:24:53 +0000 (17:24 +0100)
committerBen Noordhuis <info@bnoordhuis.nl>
Wed, 2 Nov 2011 16:28:46 +0000 (17:28 +0100)
doc/api/http.markdown

index 2c6fee7..3c52bdb 100644 (file)
@@ -46,7 +46,7 @@ per connection (in the case of keep-alive connections).
 
 ### Event: 'close'
 
-`function (errno) { }`
+`function () { }`
 
  Emitted when the server closes.
 
@@ -147,20 +147,11 @@ will be emitted on the request.
 
 ### Event: 'close'
 
-`function (err) { }`
+`function () { }`
 
 Indicates that the underlaying connection was terminated before
 `response.end()` was called or able to flush.
 
-The `err` parameter is always present and indicates the reason for the timeout:
-
-`err.code === 'timeout'` indicates that the underlaying connection timed out.
-This may happen because all incoming connections have a default timeout of 2
-minutes.
-
-`err.code === 'aborted'` means that the client has closed the underlaying
-connection prematurely.
-
 Just like `'end'`, this event occurs only once per request, and no more `'data'`
 events will fire afterwards.