diff options
author | Ankur Oberoi <aoberoi@gmail.com> | 2012-08-29 13:52:55 -0300 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-08-30 00:27:00 +0200 |
commit | a57d31595d842b7f250d06e14c58340d5c4c453e (patch) | |
tree | 2a3b44cbed3a62356a371240f4cf3adcb956933a /doc | |
parent | dec16aa5c2e21de1d0db737f2a08872993c1b2dd (diff) | |
download | node-new-a57d31595d842b7f250d06e14c58340d5c4c453e.tar.gz |
doc: fix grammar errors
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/http.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/http.markdown b/doc/api/http.markdown index df4976115c..48c9abaa09 100644 --- a/doc/api/http.markdown +++ b/doc/api/http.markdown @@ -354,7 +354,7 @@ which has been transmitted are equal or not. ### response.statusCode When using implicit headers (not calling `response.writeHead()` explicitly), this property -controls the status code that will be send to the client when the headers get +controls the status code that will be sent to the client when the headers get flushed. Example: @@ -452,7 +452,7 @@ emit trailers, with a list of the header fields in its value. E.g., ### response.end([data], [encoding]) This method signals to the server that all of the response headers and body -has been sent; that server should consider this message complete. +have been sent; that server should consider this message complete. The method, `response.end()`, MUST be called on each response. |