1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixed typo in Conditionals documentation page (#16531)

This commit is contained in:
Johanan Lieberman 2016-07-01 00:55:40 +03:00 committed by Brian Coca
parent 46a97e1f55
commit 2f69baf1b9

View file

@ -50,7 +50,7 @@ decide to do something conditionally based on success or failure::
- command: /bin/something
when: result|failed
# In older versions of ansible use |success, now both are valid but succedded uses the correct tense.
# In older versions of ansible use |success, now both are valid but succeeded uses the correct tense.
- command: /bin/something_else
when: result|succeeded