Skip to content

Commit 7670036

Browse files
authored
Add missing quotation mark in about.md (#733)
Closing quotation mark was missing in assignment of sparse array
1 parent 7191629 commit 7670036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/arrays/about.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Assigning a list of strings to an array variable in this manner will store the f
5050
It is possible to initialize a "sparse array" by specifying the indices you need.
5151

5252
```bash
53-
raindrops=([3]="Pling" [5]="Plang [7]="Plong")
53+
raindrops=([3]="Pling" [5]="Plang" [7]="Plong")
5454
```
5555

5656
~~~~exercism/note

0 commit comments

Comments
 (0)