From 695e7996f568b85fb1de1e2eff9588ac5358c665 Mon Sep 17 00:00:00 2001 From: AminBhr <83537913+AminBhr@users.noreply.github.com> Date: Sun, 22 Aug 2021 21:11:54 +0430 Subject: [PATCH] Update: main.go --- 16-slices/exercises/19-observe-len-cap/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16-slices/exercises/19-observe-len-cap/main.go b/16-slices/exercises/19-observe-len-cap/main.go index 95c2166..ca806a4 100644 --- a/16-slices/exercises/19-observe-len-cap/main.go +++ b/16-slices/exercises/19-observe-len-cap/main.go @@ -36,7 +36,7 @@ func main() { // 7. comment out everything // // 8. declare the games slice again using a slice literal - // (use the same elements from step 3) + // (use the same elements from step 5) // --- #2 --- // 1. use a loop from 0 to 4 to slice the games slice, element by element.