From 8c88caf9b92aab057aa456e74a6686376343a119 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Mon, 21 May 2012 18:35:58 +0100 Subject: [PATCH] fix typos --- dns/edns.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dns/edns.py b/dns/edns.py index f0e1c53d..0d148f69 100644 --- a/dns/edns.py +++ b/dns/edns.py @@ -45,11 +45,11 @@ 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 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 @@ -134,7 +134,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) -- 2.47.3