minor typo in boolean comment (#4721)

This commit is contained in:
remonboonstra 2023-09-08 07:35:53 +02:00 committed by GitHub
parent d5e7ada2dc
commit 696e92f814
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,8 +44,8 @@ key with spaces: value
# Yes and No (doesn't matter the case) will be evaluated to boolean
# true and false values respectively.
# To use the actual value use single or double quotes.
no: no # evaluates to "false": false
yes: No # evaluates to "true": false
no: no # evaluates to "no": false
yes: No # evaluates to "yes": false
not_enclosed: yes # evaluates to "not_enclosed": true
enclosed: "yes" # evaluates to "enclosed": yes