From 00c314d5daf5d1a8186c7e1f8f04238037fa13d7 Mon Sep 17 00:00:00 2001 From: Inanc Gumus Date: Mon, 25 Mar 2019 14:07:23 +0300 Subject: [PATCH] fix: slices add lines exercise --- 16-slices/exercises/25-add-lines/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16-slices/exercises/25-add-lines/main.go b/16-slices/exercises/25-add-lines/main.go index fef3b27..01bf6c9 100644 --- a/16-slices/exercises/25-add-lines/main.go +++ b/16-slices/exercises/25-add-lines/main.go @@ -61,7 +61,7 @@ func main() { // s.Colors(false) // if your editor is light background color then enable this s.PrintBacking = true // prints the backing arrays s.MaxPerLine = 15 // prints max 15 elements per line - s.SpaceCharacter = "*" // print this instead of printing a newline (for debugging) + s.SpaceCharacter = '*' // print this instead of printing a newline (for debugging) // // UNCOMMENT THE VARIABLE BELOW THEN START!