plugins: Doc improvement (#41378)

* Typo fixes
* Grammer fixes
* Option fixes

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2018-06-13 11:52:42 +05:30 committed by GitHub
parent d6ba139713
commit 063d19048d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 23 additions and 24 deletions

View file

@ -30,7 +30,7 @@ DOCUMENTATION = """
default: utf-8
version_added: "2.1"
notes:
- The default is for TSV files (tab delimeted) not CSV (comma delimted) ... yes the name is misleading.
- The default is for TSV files (tab delimited) not CSV (comma delimited) ... yes the name is misleading.
"""
EXAMPLES = """

View file

@ -24,7 +24,7 @@ DOCUMENTATION = '''
- Jan-Piet Mens (@jpmens)
lookup: etcd
version_added: "2.1"
short_description: get info from etcd server
short_description: get info from an etcd server
description:
- Retrieves data from an etcd server
options:
@ -48,7 +48,7 @@ DOCUMENTATION = '''
- name: ANSIBLE_ETCD_VERSION
validate_certs:
description:
- toggle checking that the ssl ceritificates are valid, you normally only want to turn this off with self-signed certs.
- toggle checking that the ssl certificates are valid, you normally only want to turn this off with self-signed certs.
default: True
type: boolean
'''

View file

@ -37,7 +37,7 @@ DOCUMENTATION = '''
'''
EXAMPLES = """
# All this examples depends on hiera.yml that describes the hierarchy
# All this examples depends on hiera.yml that describes the hierarchy
- name: "a value from Hiera 'DB'"
debug: msg={{ lookup('hiera', 'foo') }}

View file

@ -29,7 +29,7 @@ EXAMPLES = """
RETURN = """
_raw:
description:
- list with each item.0 giving you the postiion and item.1 the value
- list with each item.0 giving you the position and item.1 the value
type: list
"""

View file

@ -14,14 +14,14 @@ DOCUMENTATION = """
version_added: "1.3"
short_description: list of inventory hosts matching a host pattern
description:
- "This lookup understands 'host patterns' as used bye the `hosts:` keyword in plays
- "This lookup understands 'host patterns' as used by the `hosts:` keyword in plays
and can return a list of matching hosts from inventory"
notes:
- this is only worth for 'hostname patterns' it is easier to loop over the group/group_names variables otherwise.
"""
EXAMPLES = """
- name: show all the hosts matching the pattern, ie all but the group www
- name: show all the hosts matching the pattern, i.e. all but the group www
debug:
msg: "{{ item }}"
with_inventory_hostnames:

View file

@ -14,7 +14,7 @@ DOCUMENTATION = """
notes:
- this is the standard lookup used for loops in most examples
- check out the 'flattened' lookup for recursive flattening
- if you dont want flattening nor any other tranformation look at the 'list' lookup.
- if you do not want flattening nor any other transformation look at the 'list' lookup.
options:
_terms:
description: list of items

View file

@ -54,7 +54,7 @@ DOCUMENTATION = '''
default: "{}"
skip:
description:
- How many results should be skept
- How many results should be skipped
type: integer
limit:
description:
@ -66,7 +66,7 @@ DOCUMENTATION = '''
type: list
default: "[]"
notes:
- "Please check https://api.mongodb.org/python/current/api/pymongo/collection.html?highlight=find#pymongo.collection.Collection.find for more detais."
- "Please check https://api.mongodb.org/python/current/api/pymongo/collection.html?highlight=find#pymongo.collection.Collection.find for more details."
requirements:
- pymongo >= 2.4 (python library)
'''

View file

@ -32,7 +32,7 @@ DOCUMENTATION = """
description: increments between sequence numbers, the default is 1 unless the end is less than the start, then it is -1.
type: number
format:
description: return a string with the generated number formated in
description: return a string with the generated number formatted in
"""
EXAMPLES = """

View file

@ -11,16 +11,15 @@ DOCUMENTATION = """
short_description: read keys from Python shelve file
description:
- Read keys from Python shelve file.
optoins:
options:
_terms:
description: sets of key value pairs of parameters
options:
key:
description: key to query
required: True
file:
description: path to shelve file
required: True
key:
description: key to query
required: True
file:
description: path to shelve file
required: True
"""
EXAMPLES = """

View file

@ -5,14 +5,14 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
DOCUMENTATION = """
lookup: toghether
lookup: together
author: Bradley Young <young.bradley@gmail.com>
version_added: '1.3'
short_description: merges lists into syncronized list
short_description: merges lists into synchronized list
description:
- Creates a list with the iterated elements of the supplied lists
- "To clarify with an example, [ 'a', 'b' ] and [ 1, 2 ] turn into [ ('a',1), ('b', 2) ]"
- This is basicaly the same as the 'zip_longest' filter and Python function
- This is basically the same as the 'zip_longest' filter and Python function
- Any 'unbalanced' elements will be substituted with 'None'
options:
_terms:
@ -31,7 +31,7 @@ EXAMPLES = """
RETURN = """
_list:
description: syncronized list
description: synchronized list
"""
from ansible.errors import AnsibleError
from ansible.module_utils.six.moves import zip_longest

View file

@ -54,7 +54,7 @@ EXAMPLES = """
RETURN = """
_value:
description:
- valueof the variables requested.
- value of the variables requested.
"""
from ansible.errors import AnsibleError, AnsibleUndefinedVariable