fix spelling

This commit is contained in:
Robert Kaussow 2024-01-30 22:21:08 +01:00
parent 9d2e5148c4
commit 736800dd1d
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 3 additions and 2 deletions

View File

@ -5,8 +5,9 @@ class CheckWhenFormat(RuleBase):
rid = "ANS122"
description = "Don't use Jinja2 in when"
helptext = (
"`when` is a raw Jinja2 expression, redundant {{ }} " "should be removed from variable(s)"
"`when` is a raw Jinja2 expression, redundant `{{ }}` should be removed from variable(s)"
)
types = ["playbook", "task", "handler"]
def check(self, candidate, settings):

View File

@ -44,5 +44,5 @@ Reviews are useless without some rules to check against. `ansible-later` comes w
| CheckChangedInWhen | ANS126 | Use handlers instead of `when: changed`. | |
| CheckChangedInWhen | ANS127 | Deprecated bare variables in loops must not be used. | |
| CheckFQCNBuiltin | ANS128 | Module actions should use full qualified collection names. | |
| CheckFQCNBuiltin | ANS129 | Check optimized plabook/tasks key order. | |
| CheckFQCNBuiltin | ANS129 | Check optimized playbook/tasks key order. | |
| CheckDeprecated | ANS999 | Deprecated features of `ansible-later` should not be used. | |