From 218d57ff382d0ceed307785cc13b9e2f1702dbac Mon Sep 17 00:00:00 2001 From: d-tsuji Date: Sat, 5 Sep 2020 17:10:17 +0900 Subject: content: fix code indents Change-Id: If4931701d111fad6228724c9307dc8ffd5ec646c Reviewed-on: https://go-review.googlesource.com/c/blog/+/253098 Reviewed-by: Alberto Donizetti Reviewed-by: Emmanuel Odeke --- content/json.article | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/json.article b/content/json.article index bedeba6..d6a1c9b 100644 --- a/content/json.article +++ b/content/json.article @@ -216,8 +216,8 @@ Let's define a Go type to contain the data from the previous example: Parents []string } - var m FamilyMember - err := json.Unmarshal(b, &m) + var m FamilyMember + err := json.Unmarshal(b, &m) Unmarshaling that data into a `FamilyMember` value works as expected, but if we look closely we can see a remarkable thing has happened. -- cgit v1.2.3