Skip to content

Commit db0c07f

Browse files
committed
Fix small issue with console log prints
1 parent 1810229 commit db0c07f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/content/1/en/part1b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const t = [1, 2, 3, 4, 5]
118118

119119
const [first, second, ...rest] = t
120120

121-
console.log(first, second) // 1, 2 is printed
121+
console.log(first, second) // 1 2 is printed
122122
console.log(rest) // [3, 4, 5] is printed
123123
```
124124

src/content/1/es/part1b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const t = [1, 2, 3, 4, 5]
118118

119119
const [first, second, ...rest] = t
120120

121-
console.log(first, second) // se imprime 1, 2
121+
console.log(first, second) // se imprime 1 2
122122
console.log(rest) // se imprime [3, 4 ,5]
123123
```
124124

src/content/1/fi/osa1b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ const t = [1, 2, 3, 4, 5]
121121

122122
const [first, second, ...rest] = t
123123

124-
console.log(first, second) // tulostuu 1, 2
124+
console.log(first, second) // tulostuu 1 2
125125
console.log(rest) // tulostuu [3, 4 ,5]
126126
```
127127

src/content/1/fr/part1b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const t = [1, 2, 3, 4, 5]
119119

120120
const [first, second, ...rest] = t
121121

122-
console.log(first, second) // 1, 2 est affiché
122+
console.log(first, second) // 1 2 est affiché
123123
console.log(rest) // [3, 4, 5] est affiché
124124
```
125125

src/content/1/ptbr/part1b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const t = [1, 2, 3, 4, 5]
118118

119119
const [primeiro, segundo, ...resto] = t
120120

121-
console.log(primeiro, segundo) // 1, 2 é impresso
121+
console.log(primeiro, segundo) // 1 2 é impresso
122122
console.log(resto) // [3, 4, 5] é impresso
123123
```
124124

src/content/1/zh/part1b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const t = [1, 2, 3, 4, 5]
142142

143143
const [first, second, ...rest] = t
144144

145-
console.log(first, second) // 1, 2 is printed
145+
console.log(first, second) // 1 2 is printed
146146
console.log(rest) // [3, 4, 5] is printed
147147
```
148148

0 commit comments

Comments
 (0)