Skip to content

Commit d5ae91d

Browse files
committed
fix typo
1 parent e1af39e commit d5ae91d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The wagon IDs of the second `array` should be added into the first `array` direc
4949
```javascript
5050
eachWagonsWieght = [1, 5, 20, 7, 4, 8];
5151
missingWagons = [3, 17, 6, 15];
52-
CorrectListOfWagons(eachWagonsWieght, missingWagons);
52+
correctListOfWagons(eachWagonsWieght, missingWagons);
5353
// => [1, 3, 17, 6, 15, 5, 20, 7, 4, 8]
5454
```
5555

0 commit comments

Comments
 (0)