From e3a2c636311c1e674f2eb660e5559e5d9a9f829b Mon Sep 17 00:00:00 2001 From: Firas Khalil Khana Date: Sat, 1 May 2021 13:21:56 +0300 Subject: [PATCH] More i capitalization --- 16-slices/questions/6-capacity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16-slices/questions/6-capacity.md b/16-slices/questions/6-capacity.md index 55b6aa6..2d65dd1 100644 --- a/16-slices/questions/6-capacity.md +++ b/16-slices/questions/6-capacity.md @@ -22,7 +22,7 @@ ## What are the length and capacity of the slice value? ```go -[]string{"i", "have", "a", "great", "capacity"} +[]string{"I", "have", "a", "great", "capacity"} ``` 1. Length: 5 - Capacity: 5 *CORRECT* 2. Length: 0 - Capacity: 5