Update yaml.html.markdown (#5017)

Two value description texts contain the wrong key name. This commit corrects both key names in the description texts.
This commit is contained in:
Thomas Müller 2024-08-07 18:30:31 +02:00 committed by GitHub
parent ad6e1f09bc
commit 6a7cfde3f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,20 +84,20 @@ folded_style: >
# |- and >- removes the trailing blank lines (also called literal/block "strip")
literal_strip: |-
This entire block of text will be the value of the 'literal_block' key,
This entire block of text will be the value of the 'literal_strip' key,
with trailing blank line being stripped.
block_strip: >-
This entire block of text will be the value of 'folded_style', but this
This entire block of text will be the value of 'block_strip', but this
time, all newlines will be replaced with a single space and
trailing blank line being stripped.
# |+ and >+ keeps trailing blank lines (also called literal/block "keep")
literal_keep: |+
This entire block of text will be the value of the 'literal_block' key,
This entire block of text will be the value of the 'literal_keep' key,
with trailing blank line being kept.
block_keep: >+
This entire block of text will be the value of 'folded_style', but this
This entire block of text will be the value of 'block_keep', but this
time, all newlines will be replaced with a single space and
trailing blank line being kept.