diff options
author | Felix Fontein <felix@fontein.de> | 2022-01-19 02:17:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 17:17:04 -0800 |
commit | 841135bd425decc302824ac166076a9db8c9a236 (patch) | |
tree | edcab221cd054a3525e532a3c00a1ca44311655e /lib/ansible/plugins/lookup/sequence.py | |
parent | 6fa408a99af16ea99e034750cfa35fcad5a70905 (diff) | |
download | ansible-841135bd425decc302824ac166076a9db8c9a236.tar.gz |
[2.12] Use correct markup in documentation (#76574)
* Use correct markup in documentation (#76545)
(cherry picked from commit 9d1898b1ef8a84f53c1a5f243744071b3aee1e42)
* Fix markup.
(cherry picked from commit c24c4790610c5bb244b689b1cfd69f25c18e4ddd)
Diffstat (limited to 'lib/ansible/plugins/lookup/sequence.py')
-rw-r--r-- | lib/ansible/plugins/lookup/sequence.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/plugins/lookup/sequence.py b/lib/ansible/plugins/lookup/sequence.py index 7dac37bd52..3a2f38baed 100644 --- a/lib/ansible/plugins/lookup/sequence.py +++ b/lib/ansible/plugins/lookup/sequence.py @@ -15,8 +15,8 @@ DOCUMENTATION = """ - 'Arguments can be specified as key=value pair strings or as a shortcut form of the arguments string is also accepted: [start-]end[/stride][:format].' - 'Numerical values can be specified in decimal, hexadecimal (0x3f8) or octal (0600).' - Starting at version 1.9.2, negative strides are allowed. - - Generated items are strings. Use Jinja2 filters to convert items to preferred type, e.g. ``{{ 1 + item|int }}``. - - See also Jinja2 ``range`` filter as an alternative. + - Generated items are strings. Use Jinja2 filters to convert items to preferred type, e.g. C({{ 1 + item|int }}). + - See also Jinja2 C(range) filter as an alternative. options: start: description: number at which to start the sequence |