summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/dns.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-03-04 11:08:54 -0500
committerRob Crittenden <rcritten@redhat.com>2011-03-04 11:09:43 -0500
commit4d0e739345fe3039db16e0ee613431e1aa92cf02 (patch)
tree87fe8f94e7b7265cd12b8a78eca89cedb87ad160 /ipalib/plugins/dns.py
parentc0ecdd1395e457592407c2d4d622a2758896d8ca (diff)
downloadfreeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.tar.gz
freeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.tar.xz
freeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.zip
Fix style and grammatical issues in built-in command help.
There is a rather large API.txt change but it is only due to changes in the doc string in parameters. ticket 729
Diffstat (limited to 'ipalib/plugins/dns.py')
-rw-r--r--ipalib/plugins/dns.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py
index 1c03b5320..e45a8f921 100644
--- a/ipalib/plugins/dns.py
+++ b/ipalib/plugins/dns.py
@@ -52,7 +52,7 @@ EXAMPLES:
Show zone example.com:
ipa dnszone-show example.com
- Find zone with "example" in it's domain name:
+ Find zone with "example" in its domain name:
ipa dnszone-find example
Find records for resources with "www" in their name in zone example.com:
@@ -249,8 +249,8 @@ class dnszone(LDAPObject):
),
Str('idnssoamname',
cli_name='name_server',
- label=_('Authoritative name server'),
- doc=_('Authoritative name server'),
+ label=_('Authoritative nameserver'),
+ doc=_('Authoritative nameserver.'),
),
Str('idnssoarname',
cli_name='admin_email',
@@ -326,7 +326,7 @@ class dnszone(LDAPObject):
Flag('idnsallowdynupdate',
cli_name='allow_dynupdate',
label=_('Dynamic update'),
- doc=_('Allow dynamic update?'),
+ doc=_('Allow dynamic updates.'),
attribute=True,
),
)
@@ -340,7 +340,7 @@ class dnszone_add(LDAPCreate):
"""
takes_options = LDAPCreate.takes_options + (
Flag('force',
- doc=_('force DNS zone creation even if name server not in DNS'),
+ doc=_('Force DNS zone creation even if nameserver not in DNS.'),
),
Str('ip_address?', _validate_ipaddr,
doc=_('Add the nameserver to DNS with this IP address'),