From c6eb8c38df9270facb5a282b1c9403b6ea9904b3 Mon Sep 17 00:00:00 2001 From: Firas Khalil Khana Date: Sat, 1 May 2021 13:21:55 +0300 Subject: [PATCH] Fix small typos --- 14-arrays/questions/1-array-basics.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/14-arrays/questions/1-array-basics.md b/14-arrays/questions/1-array-basics.md index 1f6651a..e288b5a 100644 --- a/14-arrays/questions/1-array-basics.md +++ b/14-arrays/questions/1-array-basics.md @@ -8,7 +8,7 @@ ## Where is the 2nd variable below stored in memory? ```go -// Let's say that first variable below is stored in this memory location: 20th +// Let's say that the first variable below is stored in this memory location: 20th var ( first int32 = 100 second int32 = 150 @@ -139,7 +139,7 @@ func main() { if i == len(sum) - 1 { break } - + sum[i+1] = 10 fmt.Print(v, " ") }