mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix spelling of "lookup" across docs and src comments
PR #38273 by @colinrymer
This commit is contained in:
parent
3c53e2f8ea
commit
893b4e9116
4 changed files with 4 additions and 4 deletions
|
@ -690,7 +690,7 @@ def main():
|
||||||
uuid = get_vm_uuid(module, p['name'])
|
uuid = get_vm_uuid(module, p['name'])
|
||||||
# Bit of a chicken and egg problem here for VMs with state == deleted.
|
# Bit of a chicken and egg problem here for VMs with state == deleted.
|
||||||
# If they're going to be removed in this play, we have to lookup the
|
# If they're going to be removed in this play, we have to lookup the
|
||||||
# uuid. If they're already deleted there's nothing to looup.
|
# uuid. If they're already deleted there's nothing to lookup.
|
||||||
# So if state == deleted and get_vm_uuid() returned '', the VM is already
|
# So if state == deleted and get_vm_uuid() returned '', the VM is already
|
||||||
# deleted and there's nothing else to do.
|
# deleted and there's nothing else to do.
|
||||||
if uuid is None and vm_state == 'deleted':
|
if uuid is None and vm_state == 'deleted':
|
||||||
|
|
|
@ -14,7 +14,7 @@ DOCUMENTATION = """
|
||||||
version: '2.9'
|
version: '2.9'
|
||||||
alternative: new 'redis' lookup
|
alternative: new 'redis' lookup
|
||||||
description:
|
description:
|
||||||
- this looup returns a list of items given to it, if any of the top level items is also a list it will flatten it, but it will not recurse
|
- this lookup returns a list of items given to it, if any of the top level items is also a list it will flatten it, but it will not recurse
|
||||||
requirements:
|
requirements:
|
||||||
- redis (python library https://github.com/andymccurdy/redis-py/)
|
- redis (python library https://github.com/andymccurdy/redis-py/)
|
||||||
options:
|
options:
|
||||||
|
|
|
@ -10,7 +10,7 @@ DOCUMENTATION = """
|
||||||
version_added: historical
|
version_added: historical
|
||||||
short_description: list of items
|
short_description: list of items
|
||||||
description:
|
description:
|
||||||
- this looup returns a list of items given to it, if any of the top level items is also a list it will flatten it, but it will not recurse
|
- this lookup returns a list of items given to it, if any of the top level items is also a list it will flatten it, but it will not recurse
|
||||||
notes:
|
notes:
|
||||||
- this is the standard lookup used for loops in most examples
|
- this is the standard lookup used for loops in most examples
|
||||||
- check out the 'flattened' lookup for recursive flattening
|
- check out the 'flattened' lookup for recursive flattening
|
||||||
|
|
|
@ -12,7 +12,7 @@ DOCUMENTATION = """
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
short_description: fetch data from Redis
|
short_description: fetch data from Redis
|
||||||
description:
|
description:
|
||||||
- This looup returns a list of results from a Redis DB corresponding to a list of items given to it
|
- This lookup returns a list of results from a Redis DB corresponding to a list of items given to it
|
||||||
requirements:
|
requirements:
|
||||||
- redis (python library https://github.com/andymccurdy/redis-py/)
|
- redis (python library https://github.com/andymccurdy/redis-py/)
|
||||||
options:
|
options:
|
||||||
|
|
Loading…
Reference in a new issue