Browse Source

doc: debugger, dns, http: fix grammar

v0.10.2-release
Benjamin Ruston 12 years ago
committed by Ben Noordhuis
parent
commit
024a8b0cb4
  1. 2
      doc/api/debugger.markdown
  2. 2
      doc/api/dns.markdown
  3. 2
      doc/api/http.markdown

2
doc/api/debugger.markdown

@ -97,7 +97,7 @@ prints the active watchers. To remove a watcher, type
* `next`, `n` - Step next * `next`, `n` - Step next
* `step`, `s` - Step in * `step`, `s` - Step in
* `out`, `o` - Step out * `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 ### Breakpoints

2
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 pool. C-Ares is much faster than `getaddrinfo` but the system resolver is
more constant with how other programs operate. When a user does more constant with how other programs operate. When a user does
`net.connect(80, 'google.com')` or `http.get({ host: 'google.com' })` the `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. quickly should use the methods that go through C-Ares.
Here is an example which resolves `'www.google.com'` then reverse Here is an example which resolves `'www.google.com'` then reverse

2
doc/api/http.markdown

@ -230,7 +230,7 @@ The response implements the [Writable Stream][] interface. This is an
`function () { }` `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.end()` was called or able to flush.
### response.writeContinue() ### response.writeContinue()

Loading…
Cancel
Save