diff --git a/docs/docsite/rst/common_return_values.rst b/docs/docsite/rst/common_return_values.rst index 7573a075cde..719c656b22c 100644 --- a/docs/docsite/rst/common_return_values.rst +++ b/docs/docsite/rst/common_return_values.rst @@ -3,10 +3,10 @@ Return Values .. contents:: Topics -Ansible modules normally return a data structure that can be registered into a variable, or seen directly when output by +Ansible modules normally return a data structure that can be registered into a variable, or seen directly when output by the `ansible` program. Each module can optionally document its own unique return values (visible through ansible-doc and https://docs.ansible.com). -This document covers return values common to all modules. +This document covers return values common to all modules. .. note:: Some of these keys might be set by Ansible itself once it processes the module's return information. @@ -54,7 +54,7 @@ Some modules execute command line utilities or are geared for executing commands stderr_lines ```````````` -When c(stderr) is returned we also always provide this field which is a list of strings, one item per line from the original. +When `stderr` is returned we also always provide this field which is a list of strings, one item per line from the original. stdout `````` @@ -62,7 +62,7 @@ Some modules execute command line utilities or are geared for executing commands stdout_lines ```````````` -When c(stdout) is returned, Ansible always provides a list of strings, each containing one item per line from the original output. +When `stdout` is returned, Ansible always provides a list of strings, each containing one item per line from the original output. .. _internal_return_values: diff --git a/lib/ansible/modules/cloud/amazon/rds.py b/lib/ansible/modules/cloud/amazon/rds.py index 3c02d1f4fd9..f33e13812d8 100644 --- a/lib/ansible/modules/cloud/amazon/rds.py +++ b/lib/ansible/modules/cloud/amazon/rds.py @@ -126,7 +126,7 @@ options: description: - Port number that the DB instance uses for connections. Used only when command=create or command=replicate. - Prior to 2.0 it always defaults to null and the API would use 3306, it had to be set to other DB default values when not using MySql. - Starting at 2.0 it automatically defaults to what is expected for each c(db_engine). + Starting at 2.0 it automatically defaults to what is expected for each C(db_engine). required: false default: 3306 for mysql, 1521 for Oracle, 1433 for SQL Server, 5432 for PostgreSQL. upgrade: diff --git a/lib/ansible/modules/network/junos/junos_rpc.py b/lib/ansible/modules/network/junos/junos_rpc.py index c3cc9fe697f..eed1aea78d3 100644 --- a/lib/ansible/modules/network/junos/junos_rpc.py +++ b/lib/ansible/modules/network/junos/junos_rpc.py @@ -22,7 +22,7 @@ short_description: Runs an arbitrary RPC over NetConf on an Juniper JUNOS device description: - Sends a request to the remote device running JUNOS to execute the specified RPC using the NetConf transport. The reply is then - returned to the playbook in the c(xml) key. If an alternate output + returned to the playbook in the C(xml) key. If an alternate output format is requested, the reply is transformed to the requested output. extends_documentation_fragment: junos options: diff --git a/lib/ansible/modules/packaging/os/slackpkg.py b/lib/ansible/modules/packaging/os/slackpkg.py index ad034308eda..ad65ee50d65 100644 --- a/lib/ansible/modules/packaging/os/slackpkg.py +++ b/lib/ansible/modules/packaging/os/slackpkg.py @@ -35,7 +35,7 @@ options: state: description: - - state of the package, you can use "installed" as an alias for C(present) and removed as one for c(absent). + - state of the package, you can use "installed" as an alias for C(present) and removed as one for C(absent). choices: [ 'present', 'absent', 'latest' ] required: false default: present diff --git a/lib/ansible/utils/module_docs_fragments/exoscale.py b/lib/ansible/utils/module_docs_fragments/exoscale.py index 6819dc22356..d1352551fac 100644 --- a/lib/ansible/utils/module_docs_fragments/exoscale.py +++ b/lib/ansible/utils/module_docs_fragments/exoscale.py @@ -11,20 +11,20 @@ options: api_key: description: - API key of the Exoscale DNS API. - - Since 2.4, the ENV variable c(CLOUDSTACK_KEY) is used as default, when defined. + - Since 2.4, the ENV variable C(CLOUDSTACK_KEY) is used as default, when defined. api_secret: description: - Secret key of the Exoscale DNS API. - - Since 2.4, the ENV variable c(CLOUDSTACK_SECRET) is used as default, when defined. + - Since 2.4, the ENV variable C(CLOUDSTACK_SECRET) is used as default, when defined. api_timeout: description: - HTTP timeout to Exoscale DNS API. - - Since 2.4, the ENV variable c(CLOUDSTACK_TIMEOUT) is used as default, when defined. + - Since 2.4, the ENV variable C(CLOUDSTACK_TIMEOUT) is used as default, when defined. default: 10 api_region: description: - Name of the ini section in the C(cloustack.ini) file. - - Since 2.4, the ENV variable c(CLOUDSTACK_REGION) is used as default, when defined. + - Since 2.4, the ENV variable C(CLOUDSTACK_REGION) is used as default, when defined. default: cloudstack validate_certs: description: