From: Bob Halley Date: Mon, 21 May 2012 17:34:46 +0000 (+0100) Subject: fix typos X-Git-Tag: v1.11.0~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d65a7a8f7d23c3d4219364069bdd41f19c8215f9;p=thirdparty%2Fdnspython.git fix typos --- diff --git a/dns/edns.py b/dns/edns.py index 4d4eaa85..e52b6df3 100644 --- a/dns/edns.py +++ b/dns/edns.py @@ -44,13 +44,13 @@ class Option(object): @type current: int @param olen: The length of the wire-format option data @type olen: int - @rtype: dns.ends.Option instance""" + @rtype: dns.edns.Option instance""" raise NotImplementedError from_wire = classmethod(from_wire) def _cmp(self, other): - """Compare an ENDS option with another option of the same type. + """Compare an EDNS option with another option of the same type. Return < 0 if self < other, 0 if self == other, and > 0 if self > other. """ raise NotImplementedError @@ -136,7 +136,7 @@ def option_from_wire(otype, wire, current, olen): @type current: int @param olen: The length of the wire-format option data @type olen: int - @rtype: dns.ends.Option instance""" + @rtype: dns.edns.Option instance""" cls = get_option_class(otype) return cls.from_wire(otype, wire, current, olen)