Fix typos

This commit is contained in:
Thomas Lovén 2019-11-08 09:50:01 +01:00
parent 443b492685
commit 75a224548f

View File

@ -253,7 +253,7 @@ Children:
Things to note: Things to note:
- The space after the comma is important. - The space after the colon is important.
- The value of `Hobbies` is a list. Like above, each line of the value is - The value of `Hobbies` is a list. Like above, each line of the value is
indented by an equal number of spaces. indented by an equal number of spaces.
- The value of `Phones` is a dictionary. The same indentation rules apply. - The value of `Phones` is a dictionary. The same indentation rules apply.
@ -401,7 +401,7 @@ Dictionaries can be merged using the merging operator: `<<`. For example:
```yaml ```yaml
a key: a value a key: a value
b key: b value b key: b value
<<: {d key: d value, e key: e value} <<: {c key: c value, d key: d value}
``` ```
will be parsed as will be parsed as