fix typos in net_tools_modules (#62201) (#62261)

(cherry picked from commit 6936187bbe)
pull/62378/head
Andrey Klychkov 6 years ago committed by Alicia Cozine
parent 2467a5a4c1
commit 0c39f2e682

@ -224,7 +224,7 @@ EXAMPLES = r'''
dest: /tmp/afilecopy.txt
- name: < Fetch file that requires authentication.
username/password only availabe since 2.8, in older versions you need to use url_username/url_password
username/password only available since 2.8, in older versions you need to use url_username/url_password
get_url:
url: http://example.com/path/file.conf
dest: /etc/foo.conf

@ -468,7 +468,7 @@ def form_urlencoded(body):
if isinstance(body, (Mapping, Sequence)):
result = []
# Turn a list of lists into a list of tupples that urlencode accepts
# Turn a list of lists into a list of tuples that urlencode accepts
for key, values in kv_list(body):
if isinstance(values, string_types) or not isinstance(values, (Mapping, Sequence)):
values = [values]

@ -151,7 +151,7 @@ class Infinity(object):
params=None,
payload_data=None):
"""
Perform the HTTPS request by using anible get/delete method
Perform the HTTPS request by using ansible get/delete method
"""
stat_codes = [200] if stat_codes is None else stat_codes
request_url = str(self.base_url) + str(resource_url)

@ -19,7 +19,7 @@ short_description: Configure Infoblox NIOS DHCP Fixed Address
description:
- A fixed address is a specific IP address that a DHCP server
always assigns when a lease request comes from a particular
MAC address of the clien.
MAC address of the client.
- Supports both IPV4 and IPV6 internet protocols
requirements:
- infoblox-client

Loading…
Cancel
Save