More i capitalization

This commit is contained in:
Firas Khalil Khana
2021-05-01 13:21:56 +03:00
committed by İnanç Gümüş
parent 73b37c16c5
commit 822016daa1
2 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ if colors == tones {
## What is the length of this slice? ## What is the length of this slice?
```go ```go
[]string{"i'm", "going", "to", "stay", "\"here\""} []string{"I'm", "going", "to", "stay", "\"here\""}
``` ```
1. 0 1. 0
@ -120,4 +120,4 @@ if colors == tones {
3. 2 3. 2
4. 3 4. 3
5. 4 5. 4
6. 5 *CORRECT* 6. 5 *CORRECT*

View File

@ -19,7 +19,7 @@
## When you slice a slice, what value does it return? ## When you slice a slice, what value does it return?
```go ```go
// example: // example:
s := []string{"i'm", "a", "slice"} s := []string{"I'm", "a", "slice"}
s[2:] // <-- slicing s[2:] // <-- slicing
``` ```
1. It returns a new slice value with a new backing array 1. It returns a new slice value with a new backing array