summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorGabriel Falkenberg <gabriel.falkenberg@gmail.com>2013-12-02 11:18:37 +0100
committerTimothy J Fontaine <tjfontaine@gmail.com>2013-12-02 13:31:23 -0800
commit94c4ba9dd33bf6d1ab4936f5d4039ecf7957bb32 (patch)
tree8262ff862ada14508cb1c494d68c03be826b297f /doc/api
parent8aac118b69a10a134e57e8e066c56ba7370d25cc (diff)
downloadnode-94c4ba9dd33bf6d1ab4936f5d4039ecf7957bb32.tar.gz
doc: change constant to consistent
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/dns.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/dns.markdown b/doc/api/dns.markdown
index 1ad6e6574..efcf127e8 100644
--- a/doc/api/dns.markdown
+++ b/doc/api/dns.markdown
@@ -5,7 +5,7 @@
Use `require('dns')` to access this module. All methods in the dns module
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
+more consistent 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 lookups
quickly should use the methods that go through C-Ares.