Merge pull request #42261 from rallytime/minor-doc-fix

Some minor doc fixes for dnsutil module so they'll render correctly
This commit is contained in:
Nicole Thomas 2017-07-11 17:14:53 -06:00 committed by GitHub
commit e2aa5114e4

View file

@ -2,8 +2,9 @@
'''
Compendium of generic DNS utilities.
.. note:
Some functions in the `dnsutil` execution module depend on `dig`.
.. note::
Some functions in the ``dnsutil`` execution module depend on ``dig``.
'''
from __future__ import absolute_import
@ -245,7 +246,7 @@ def check_ip(ip_addr):
def A(host, nameserver=None):
'''
Return the A record(s) for `host`.
Return the A record(s) for ``host``.
Always returns a list.
@ -270,7 +271,7 @@ def A(host, nameserver=None):
def AAAA(host, nameserver=None):
'''
Return the AAAA record(s) for `host`.
Return the AAAA record(s) for ``host``.
Always returns a list.