diff --git a/16-slices/questions/1-slices-vs-arrays.md b/16-slices/questions/1-slices-vs-arrays.md index d57c183..be6b902 100644 --- a/16-slices/questions/1-slices-vs-arrays.md +++ b/16-slices/questions/1-slices-vs-arrays.md @@ -112,7 +112,7 @@ if colors == tones { ## What is the length of this slice? ```go -[]string{"i'm", "going", "to", "stay", "\"here\""} +[]string{"I'm", "going", "to", "stay", "\"here\""} ``` 1. 0 @@ -120,4 +120,4 @@ if colors == tones { 3. 2 4. 3 5. 4 -6. 5 *CORRECT* \ No newline at end of file +6. 5 *CORRECT* diff --git a/16-slices/questions/4-backing-array.md b/16-slices/questions/4-backing-array.md index d2b5ef2..329efe6 100644 --- a/16-slices/questions/4-backing-array.md +++ b/16-slices/questions/4-backing-array.md @@ -19,7 +19,7 @@ ## When you slice a slice, what value does it return? ```go // example: -s := []string{"i'm", "a", "slice"} +s := []string{"I'm", "a", "slice"} s[2:] // <-- slicing ``` 1. It returns a new slice value with a new backing array