Skip to content

Commit ac7d47d

Browse files
committed
variable names
1 parent 4bd362a commit ac7d47d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/docs/manual/latest/array-and-list.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ You can spread arrays of the the same type into new arrays, just like in JavaScr
6262
```res example
6363
let y = [1, 2]
6464
let x = [4, 5, ...y]
65-
let x = [4, 5, ...y, 7, ...y]
66-
let x = [...y]
65+
let x2 = [4, 5, ...y, 7, ...y]
66+
let x3 = [...y]
6767
```
6868

6969
```javascript

0 commit comments

Comments
 (0)