summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2005-10-17 05:23:04 +0000
committerBob Halley <halley@dnspython.org>2005-10-17 05:23:04 +0000
commitd7cfa4cff10f5cb874ea0be780dbc86c6a72c829 (patch)
tree31bc566aeeb147041e8dbac6e15eaf2424f72589
parente5697c0e3f5849e4fbac9f1d8fa5e55434140ebe (diff)
downloaddnspython-d7cfa4cff10f5cb874ea0be780dbc86c6a72c829.tar.gz
fix doco bugs
-rw-r--r--dns/rdata.py2
-rw-r--r--dns/resolver.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/dns/rdata.py b/dns/rdata.py
index fde2f1c..9225b66 100644
--- a/dns/rdata.py
+++ b/dns/rdata.py
@@ -250,7 +250,7 @@ class Rdata(object):
@param origin: The origin to use for relative names
@type origin: dns.name.Name
@param relativize: should names be relativized?
- @type origin: bool
+ @type relativize: bool
@rtype: dns.rdata.Rdata instance
"""
diff --git a/dns/resolver.py b/dns/resolver.py
index 2b4d4ee..11eca8c 100644
--- a/dns/resolver.py
+++ b/dns/resolver.py
@@ -635,7 +635,7 @@ def zone_for_name(name, rdclass=dns.rdataclass.IN, tcp=False, resolver=None):
@param name: the query name
@type name: absolute dns.name.Name object or string
- @ivar rdclass: The query class
+ @param rdclass: The query class
@type rdclass: int
@param tcp: use TCP to make the query (default is False).
@type tcp: bool