]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
fix typos
authorBob Halley <halley@nominum.com>
Mon, 21 May 2012 17:35:58 +0000 (18:35 +0100)
committerBob Halley <halley@nominum.com>
Mon, 21 May 2012 17:35:58 +0000 (18:35 +0100)
dns/edns.py

index f0e1c53d64b96e17b501967dfe46713c681311c6..0d148f6910a541506ad578be74bb7e38c11a4840 100644 (file)
@@ -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)