More i capitalization
This commit is contained in:
committed by
İnanç Gümüş
parent
73b37c16c5
commit
822016daa1
@ -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*
|
||||
6. 5 *CORRECT*
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user