From 90c5e5a866ff3f38339439668267218e718151cc Mon Sep 17 00:00:00 2001 From: Inanc Gumus Date: Sun, 12 May 2019 01:17:40 +0300 Subject: [PATCH] fix: struct comparison example --- 24-structs/03-compare-assign/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/24-structs/03-compare-assign/main.go b/24-structs/03-compare-assign/main.go index 31d161c..b43fb39 100644 --- a/24-structs/03-compare-assign/main.go +++ b/24-structs/03-compare-assign/main.go @@ -49,7 +49,7 @@ func main() { songs := []song{ // #7b: you don't have to type the element types {title: "wonderwall", artist: "oasis"}, - {title: "radioactive", artist: "imagine dragons"}, + {title: "supersonic", artist: "oasis"}, } // #7: a struct can include another struct