1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-01 04:20:39 +02:00

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

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