diff --git a/README.md b/README.md index 1e2fb06..ceeb681 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ comes with a couple of built-in checks explained in the following table. | check_command_has_changes | ANSIBLE0011 | Commands should be idempotent and only used with some checks. | | | check_empty_string_compare | ANSIBLE0012 | Don't compare to "" - use `when: var` or `when: not var` | | | check_compare_to_literal_bool | ANSIBLE0013 | Don't compare to True/False - use `when: var` or `when: not var` | | -| check_literal_bool_format | ANSIBLE0014 | Literal bools should be written as `True/False` or `yes/no` | forbidden values are `true|false|TRUE|FALSE|Yes|No|YES|NO` | +| check_literal_bool_format | ANSIBLE0014 | Literal bools should be written as `True/False` or `yes/no` | forbidden values are `true false TRUE FALSE Yes No YES NO` | ### Build your own