From 4d0e739345fe3039db16e0ee613431e1aa92cf02 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 4 Mar 2011 11:08:54 -0500 Subject: 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 --- ipalib/plugins/dns.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ipalib/plugins/dns.py') 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'), -- cgit