Skip to content

Commit 50973fc

Browse files
authored
Fix typos in hints.md (#2796)
1 parent 7edd843 commit 50973fc

File tree

1 file changed

+2
-2
lines changed
  • exercises/concept/train-driver/.docs

1 file changed

+2
-2
lines changed

exercises/concept/train-driver/.docs/hints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
## 2. Move the first two elements to the end of the array
1313

1414
- You can unpack a series of parameters using [a destructuring assignment (`...`)][destructuring-assignment].
15-
This lets you extract the first two elements of a `array` while keeping the rest intact.
15+
This lets you extract the first two elements of an `array` while keeping the rest intact.
1616
- To add another `array` into an existing `array`, you can use the `...` operator to "spread" the `array`.
1717

1818
## 3. Add missing values
1919

20-
- Using unpacking with the rest operator(`...`), lets you extract the first two elements of a `array` while keeping the rest intact.
20+
- Using unpacking with the rest operator(`...`), you can extract the first element of an `array` while keeping the rest intact.
2121
- To add another `array` into an existing `array`, you can use the `...` operator to "spread" the `array`.
2222

2323
## 4. Extend routing information

0 commit comments

Comments
 (0)