summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Ruston <benjy.ruston@gmail.com>2013-03-28 14:19:10 +0000
committerBen Noordhuis <info@bnoordhuis.nl>2013-03-28 16:50:37 +0100
commit024a8b0cb42a4ef4e07f9c1059717c1eba9340da (patch)
treefc9273a1d6af0b95dc28d84976c6ab7b382fcbd5
parent982877ec856a1ad15108bbf2063e4a46d32742e4 (diff)
downloadnode-024a8b0cb42a4ef4e07f9c1059717c1eba9340da.tar.gz
doc: debugger, dns, http: fix grammar
-rw-r--r--doc/api/debugger.markdown2
-rw-r--r--doc/api/dns.markdown2
-rw-r--r--doc/api/http.markdown2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/debugger.markdown b/doc/api/debugger.markdown
index 63f2d49c8..2c68c1d49 100644
--- a/doc/api/debugger.markdown
+++ b/doc/api/debugger.markdown
@@ -97,7 +97,7 @@ prints the active watchers. To remove a watcher, type
* `next`, `n` - Step next
* `step`, `s` - Step in
* `out`, `o` - Step out
-* `pause` - Pause running code (like pause button in Developer TOols)
+* `pause` - Pause running code (like pause button in Developer Tools)
### Breakpoints
diff --git a/doc/api/dns.markdown b/doc/api/dns.markdown
index f6cec4cd0..1ad6e6574 100644
--- a/doc/api/dns.markdown
+++ b/doc/api/dns.markdown
@@ -7,7 +7,7 @@ use C-Ares except for `dns.lookup` which uses `getaddrinfo(3)` in a thread
pool. C-Ares is much faster than `getaddrinfo` but the system resolver is
more constant with how other programs operate. When a user does
`net.connect(80, 'google.com')` or `http.get({ host: 'google.com' })` the
-`dns.lookup` method is used. Users who need to do a large number of look ups
+`dns.lookup` method is used. Users who need to do a large number of lookups
quickly should use the methods that go through C-Ares.
Here is an example which resolves `'www.google.com'` then reverse
diff --git a/doc/api/http.markdown b/doc/api/http.markdown
index c17c6b2ea..a6f0641d0 100644
--- a/doc/api/http.markdown
+++ b/doc/api/http.markdown
@@ -230,7 +230,7 @@ The response implements the [Writable Stream][] interface. This is an
`function () { }`
-Indicates that the underlaying connection was terminated before
+Indicates that the underlying connection was terminated before
`response.end()` was called or able to flush.
### response.writeContinue()