diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst index 13b71e9fcc3..130ff4b1e86 100644 --- a/docs/docsite/rst/user_guide/playbooks_filters.rst +++ b/docs/docsite/rst/user_guide/playbooks_filters.rst @@ -76,7 +76,7 @@ Defining different values for true/false/null You can create a test, then define one value to use when the test returns true and another when the test returns false (new in version 1.9):: - {{ (status == "needs_restart") | ternary('restart', 'continue') }} + {{ (status == 'needs_restart') | ternary('restart', 'continue') }} In addition, you can define a one value to use on true, one value on false and a third value on null (new in version 2.8)::