From 75a224548fe7fd60225fa8f66f732d0ac47a2833 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Fri, 8 Nov 2019 09:50:01 +0100 Subject: [PATCH] Fix typos --- pages/2018-08-27-YAML-For-Nonprogrammers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/2018-08-27-YAML-For-Nonprogrammers.md b/pages/2018-08-27-YAML-For-Nonprogrammers.md index 3125f01..0aac08d 100644 --- a/pages/2018-08-27-YAML-For-Nonprogrammers.md +++ b/pages/2018-08-27-YAML-For-Nonprogrammers.md @@ -253,7 +253,7 @@ Children: 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 indented by an equal number of spaces. - 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 a key: a 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