update for allowed spaces

This commit is contained in:
vaxerski 2022-10-03 14:31:47 +01:00
parent 00bee7dea4
commit 24c910da8c
1 changed files with 4 additions and 4 deletions

View File

@ -7,13 +7,13 @@ leave one of them empty, you cannot reduce the number of commas, *unless told
otherwise in a specific section*:
```ini
three_param_keyword=A,B,C # OK
three_param_keyword = A, B, C # OK
three_param_keyword=A,C # NOT OK
three_param_keyword = A, C # NOT OK
three_param_keyword=A,,C # OK
three_param_keyword = A, , C # OK
three_param_keyword=A,B, # OK
three_param_keyword = A, B, # OK
```
{{< /hint >}}