summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/filter/zip_longest.yml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/plugins/filter/zip_longest.yml')
-rw-r--r--lib/ansible/plugins/filter/zip_longest.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/plugins/filter/zip_longest.yml b/lib/ansible/plugins/filter/zip_longest.yml
index db351b40..964e9c29 100644
--- a/lib/ansible/plugins/filter/zip_longest.yml
+++ b/lib/ansible/plugins/filter/zip_longest.yml
@@ -5,7 +5,7 @@ DOCUMENTATION:
positional: _input, _additional_lists
description:
- Make an iterator that aggregates elements from each of the iterables.
- If the iterables are of uneven length, missing values are filled-in with I(fillvalue).
+ If the iterables are of uneven length, missing values are filled-in with O(fillvalue).
Iteration continues until the longest iterable is exhausted.
notes:
- This is mostly a passhtrough to Python's C(itertools.zip_longest) function