doc: avoid mix of single and double quotes (#70115)

Avoid mix of single and double quotes in the `ternary`, this way
we can copy/past the example without any surprise.
This commit is contained in:
Gonéri Le Bouder 2020-06-29 10:16:20 -04:00 committed by GitHub
parent ca90c138f4
commit b491f776b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)::