From: Josh Soref Date: Sun, 13 Jun 2021 21:34:40 +0000 (-0400) Subject: spelling: simpler X-Git-Tag: 1.8.0-rc.1~25^2~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01886a272b952e4ff8202105bf5e4746000331be;p=thirdparty%2Fldns.git spelling: simpler Signed-off-by: Josh Soref --- diff --git a/contrib/python/docs/source/examples/example1.rst b/contrib/python/docs/source/examples/example1.rst index b4414175..891e0853 100644 --- a/contrib/python/docs/source/examples/example1.rst +++ b/contrib/python/docs/source/examples/example1.rst @@ -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)