diff options
author | remonboonstra <56164388+remonboonstra@users.noreply.github.com> | 2023-09-08 07:35:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 13:35:53 +0800 |
commit | 696e92f814fd6c174f4491241ae6eb672f8e61cd (patch) | |
tree | 8c74e9bf42d7e9351236e5a635f5bd85a64dc207 /yaml.html.markdown | |
parent | d5e7ada2dc6d0e2b176f9e346622a193036ec56f (diff) |
minor typo in boolean comment (#4721)
Diffstat (limited to 'yaml.html.markdown')
-rw-r--r-- | yaml.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yaml.html.markdown b/yaml.html.markdown index 135213d2..2bb35d42 100644 --- a/yaml.html.markdown +++ b/yaml.html.markdown @@ -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 |