]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
spelling: simpler
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 13 Jun 2021 21:34:40 +0000 (17:34 -0400)
committerWillem Toorop <willem@nlnetlabs.nl>
Mon, 14 Jun 2021 09:29:15 +0000 (11:29 +0200)
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
contrib/python/docs/source/examples/example1.rst

index b44141759f5a97f4e27205cca8f2ad0a9db98b84..891e0853f85c0ac4599c43a42c4c85ab918dcc88 100644 (file)
@@ -50,7 +50,7 @@ In the third step we tell the resolver to query for our domain, type MX, of clas
        pkt = resolver.query(dname, ldns.LDNS_RR_TYPE_MX, ldns.LDNS_RR_CLASS_IN, ldns.LDNS_RD)
 
 The function should return a packet if everything goes well and this packet will contain resource records we asked for. 
-Note that there exists a simplier way. Instead of using a dname variable, we can use a string which will be automatically converted.
+Note that there exists a simpler way. Instead of using a dname variable, we can use a string which will be automatically converted.
 ::
 
        pkt = resolver.query("fit.vutbr.cz", ldns.LDNS_RR_TYPE_MX, ldns.LDNS_RR_CLASS_IN, ldns.LDNS_RD)