diff options
author | Abhijeet Kasurde <akasurde@redhat.com> | 2021-06-04 00:55:34 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 14:25:34 -0500 |
commit | 13a829af2b4ffb1316d80daf4c24930dd935988f (patch) | |
tree | 15aba4f908d590ddd33232e7673d4e9dbea855d2 | |
parent | 8d6a8583c9395d1be3af78c5cd4e4a0288e3cf62 (diff) | |
download | ansible-13a829af2b4ffb1316d80daf4c24930dd935988f.tar.gz |
[bp-2.11] Fix small typo in playbook_filters doc (#74763)
Move versionadded to next line to render correctly.
(cherry picked from commit 888fea69e547f49a9267d2c8df71fac38e383ed4)
Co-authored-by: Chander G <mail@chandergovind.org>
-rw-r--r-- | docs/docsite/rst/user_guide/playbooks_filters.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst index 083a2d264d..6edd8380f3 100644 --- a/docs/docsite/rst/user_guide/playbooks_filters.rst +++ b/docs/docsite/rst/user_guide/playbooks_filters.rst @@ -1675,10 +1675,10 @@ To concatenate a list into a string:: To split a sting into a list:: -.. versionadded:: 2.11 - {{ csv_string | split(",") }} +.. versionadded:: 2.11 + To work with Base64 encoded strings:: {{ encoded | b64decode }} |