Fix spelling mistakes (comments only) (#25564)

Original Author : klemens <ka7@github.com>

Taking over previous PR as per
https://github.com/ansible/ansible/pull/23644#issuecomment-307334525

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde
2017-06-12 12:25:19 +05:30
committed by John R Barker
parent 460d932aa8
commit b89cb95609
158 changed files with 202 additions and 201 deletions

View File

@@ -247,7 +247,7 @@ def current_iface_config(module):
def build_address(module):
# if addr_method == 'dhcp', dont add IP address
# if addr_method == 'dhcp', don't add IP address
if module.params.get('addr_method') == 'dhcp':
return
_ipv4 = module.params.get('ipv4')

View File

@@ -195,7 +195,7 @@ def current_iface_config(module):
def build_address(module):
# if addr_method == 'dhcp', dont add IP address
# if addr_method == 'dhcp', don't add IP address
if module.params.get('addr_method') == 'dhcp':
return
_ipv4 = module.params.get('ipv4')

View File

@@ -240,7 +240,7 @@ def current_iface_config(module):
def build_address(module):
# if addr_method == 'dhcp', dont add IP address
# if addr_method == 'dhcp', don't add IP address
if module.params.get('addr_method') == 'dhcp':
return
_ipv4 = module.params.get('ipv4')

View File

@@ -251,7 +251,7 @@ class BigIpSslCertificate(object):
key_content = self.params['key_content']
passphrase = self.params['passphrase']
# Technically you dont need to provide us with anything in the form
# Technically you don't need to provide us with anything in the form
# of content for your cert, but that's kind of illogical, so we just
# return saying you didn't "do" anything if you left the cert and keys
# empty.

View File

@@ -126,7 +126,7 @@ options:
logtraffic_start:
version_added: "2.4"
description:
- Logs begining of session as well.
- Logs beginning of session as well.
default: false
choices: ["true", "false"]
comment:
@@ -168,7 +168,7 @@ EXAMPLES = """
RETURN = """
firewall_address_config:
description: full firewall adresses config string
description: full firewall addresses config string
returned: always
type: string
change_string:

View File

@@ -78,7 +78,7 @@ options:
required: No
default: Null
choices: [aggregation-group number, access or mode or trunk, description, auto or full or half,
recieve or send, port-priority, suspend-individual, timeout, receive or transmit or trap-notification,
receive or send, port-priority, suspend-individual, timeout, receive or transmit or trap-notification,
tlv-select, Load interval delay in seconds, counter, Name for the MAC Access List, mac-address in HHHH.HHHH.HHHH format,
THRESHOLD Value in unit of buffer cell, <64-9216> MTU in bytes-<64-9216> for L2 packet,<576-9216> for L3 IPv4 packet,
<1280-9216> for L3 IPv6 packet, enter the instance id, input or output, copp-system-policy,
@@ -94,7 +94,7 @@ options:
mac-phy-status or management-address or max-frame-size or port-description or port-protocol-vlan or
port-vlan or power-mdi or protocol-identity or system-capabilities or system-description or system-name
or vid-management or vlan-name, counter for load interval, policy input name, all or Copp class name to attach,
qos, queing, Enter the allowed traffic level, ipv6]
qos, queueing, Enter the allowed traffic level, ipv6]
interfaceArg4:
description:
- This is an overloaded interface fourth argument. Usage of this argument can be found is the User Guide referenced above.

View File

@@ -65,7 +65,7 @@ options:
required: No
default: Null
choices: [aggregation-group number, access or mode or trunk, description, auto or full or half,
recieve or send, port-priority, suspend-individual, timeout, receive or transmit or trap-notification,
receive or send, port-priority, suspend-individual, timeout, receive or transmit or trap-notification,
tlv-select, Load interval delay in seconds, counter, Name for the MAC Access List, mac-address in HHHH.HHHH.HHHH format,
THRESHOLD Value in unit of buffer cell, <64-9216> MTU in bytes-<64-9216> for L2 packet,<576-9216> for
L3 IPv4 packet, <1280-9216> for L3 IPv6 packet, enter the instance id, input or output, copp-system-policy,
@@ -81,7 +81,7 @@ options:
mac-phy-status or management-address or max-frame-size or port-description or port-protocol-vlan or
port-vlan or power-mdi or protocol-identity or system-capabilities or system-description or system-name
or vid-management or vlan-name, counter for load interval, policy input name, all or Copp class name to attach,
qos, queing, Enter the allowed traffic level, ipv6]
qos, queueing, Enter the allowed traffic level, ipv6]
interfaceArg4:
description:
- This is an overloaded Port Channel fourth argument. Usage of this argument can be found is the User Guide referenced above.

View File

@@ -103,7 +103,7 @@ options:
choices: ['line', 'block']
multiline_delimiter:
description:
- This arugment is used when pushing a multiline configuration
- This argument is used when pushing a multiline configuration
element to the Ordnance router. It specifies the character to use
as the delimiting character. This only applies to the
configuration action

View File

@@ -55,7 +55,7 @@ options:
default: null
cert_cn:
description:
- Certificate CN (common name) embeded in the certificate signature.
- Certificate CN (common name) embedded in the certificate signature.
required: true
default: null
signed_by:
@@ -126,7 +126,7 @@ def generate_cert(module, ip_address, key_filename, password,
client = paramiko.SSHClient()
# add policy to accept all host keys, I haven't found
# a way to retreive the instance SSH key fingerprint from AWS
# a way to retrieve the instance SSH key fingerprint from AWS
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
if not key_filename: