]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Fix comment typo.
authorBob Halley <halley@dnspython.org>
Fri, 3 Jul 2020 02:11:49 +0000 (19:11 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 3 Jul 2020 02:32:38 +0000 (19:32 -0700)
dns/node.py

index 1425bbc7ff87ae1fee1db7830041847a0c72b243..b7e21b54678e5a486c5ca01854829e507354e68b 100644 (file)
@@ -31,7 +31,7 @@ class Node:
     __slots__ = ['rdatasets']
 
     def __init__(self):
-        #: the set of rdatsets, represented as a list.
+        # the set of rdatasets, represented as a list.
         self.rdatasets = []
 
     def to_text(self, name, **kw):