diff --git a/yamllint/rules/commas.py b/yamllint/rules/commas.py index df17a6a..fe4888f 100644 --- a/yamllint/rules/commas.py +++ b/yamllint/rules/commas.py @@ -76,7 +76,7 @@ Use this rule to control the number of spaces before and after commas (``,``). :: strange var: - [10, 20,30, {x: 1, y: 2}] + [10, 20, 30, {x: 1, y: 2}] the following code snippet would **FAIL**: ::