Skip to content

Commit 024a8b0

Browse files
brustonbnoordhuis
authored andcommitted
doc: debugger, dns, http: fix grammar
1 parent 982877e commit 024a8b0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

doc/api/debugger.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ prints the active watchers. To remove a watcher, type
9797
* `next`, `n` - Step next
9898
* `step`, `s` - Step in
9999
* `out`, `o` - Step out
100-
* `pause` - Pause running code (like pause button in Developer TOols)
100+
* `pause` - Pause running code (like pause button in Developer Tools)
101101

102102
### Breakpoints
103103

doc/api/dns.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use C-Ares except for `dns.lookup` which uses `getaddrinfo(3)` in a thread
77
pool. C-Ares is much faster than `getaddrinfo` but the system resolver is
88
more constant with how other programs operate. When a user does
99
`net.connect(80, 'google.com')` or `http.get({ host: 'google.com' })` the
10-
`dns.lookup` method is used. Users who need to do a large number of look ups
10+
`dns.lookup` method is used. Users who need to do a large number of lookups
1111
quickly should use the methods that go through C-Ares.
1212

1313
Here is an example which resolves `'www.google.com'` then reverse

doc/api/http.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ The response implements the [Writable Stream][] interface. This is an
230230

231231
`function () { }`
232232

233-
Indicates that the underlaying connection was terminated before
233+
Indicates that the underlying connection was terminated before
234234
`response.end()` was called or able to flush.
235235

236236
### response.writeContinue()

0 commit comments

Comments
 (0)