summaryrefslogtreecommitdiff
path: root/lib/ansible
diff options
context:
space:
mode:
authorAbhijeet Kasurde <akasurde@redhat.com>2017-09-09 18:03:24 +0530
committerToshio Kuratomi <a.badger@gmail.com>2017-09-09 10:26:30 -0700
commit80b41165cbd5b0a5b3885ee8d5f0026b64610bf2 (patch)
tree7d0ff3fd73d6f8ebfe7c47008dd9277d8e1ec0e7 /lib/ansible
parentdbcdf972529af4bcae8e77b6ede7fc253e3c220c (diff)
downloadansible-80b41165cbd5b0a5b3885ee8d5f0026b64610bf2.tar.gz
Misc typo corrections
Fix adds correction for typos * Anisble to Ansible * Fasle to False Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> (cherry picked from commit 8f6626bd8f38473b974a7fcd991547e3095018c0)
Diffstat (limited to 'lib/ansible')
-rw-r--r--lib/ansible/module_utils/aci.py2
-rw-r--r--lib/ansible/modules/cloud/amazon/cloudtrail.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/ansible/module_utils/aci.py b/lib/ansible/module_utils/aci.py
index 7210f47fd7..2a035b019a 100644
--- a/lib/ansible/module_utils/aci.py
+++ b/lib/ansible/module_utils/aci.py
@@ -733,7 +733,7 @@ class ACIModule(object):
def post_config(self):
"""
This method is used to handle the logic when the modules state is equal to present. The method only pushes a change if
- the object has differences than what exists on the APIC, and if check_mode is Fasle. A successful change will mark the
+ the object has differences than what exists on the APIC, and if check_mode is False. A successful change will mark the
module as changed.
"""
if not self.result['config']:
diff --git a/lib/ansible/modules/cloud/amazon/cloudtrail.py b/lib/ansible/modules/cloud/amazon/cloudtrail.py
index 05f4218ef0..82bf97c6a8 100644
--- a/lib/ansible/modules/cloud/amazon/cloudtrail.py
+++ b/lib/ansible/modules/cloud/amazon/cloudtrail.py
@@ -261,7 +261,7 @@ def create_trail(module, client, ct_params):
"""
Creates a CloudTrail
- module : AnisbleModule object
+ module : AnsibleModule object
client : boto3 client connection object
ct_params : The parameters for the Trail to create
"""
@@ -278,7 +278,7 @@ def tag_trail(module, client, tags, trail_arn, curr_tags=None, dry_run=False):
"""
Creates, updates, removes tags on a CloudTrail resource
- module : AnisbleModule object
+ module : AnsibleModule object
client : boto3 client connection object
tags : Dict of tags converted from ansible_dict to boto3 list of dicts
trail_arn : The ARN of the CloudTrail to operate on
@@ -404,7 +404,7 @@ def delete_trail(module, client, trail_arn):
"""
Delete a CloudTrail
- module : AnisbleModule object
+ module : AnsibleModule object
client : boto3 client connection object
trail_arn : Full CloudTrail ARN
"""
@@ -418,7 +418,7 @@ def update_trail(module, client, ct_params):
"""
Delete a CloudTrail
- module : AnisbleModule object
+ module : AnsibleModule object
client : boto3 client connection object
ct_params : The parameters for the Trail to update
"""