Skip to content

Commit 77ca83d

Browse files
committed
fixes
1 parent f98dbb8 commit 77ca83d

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Instructions
22

3-
Your friend is a train driver and has to drive cargo trains between cities. Although your friend isn't amazing with handling the computers and would like some help with it. Your friend would like your help organizing the train and correcting the mistakes in the data.
3+
Your friend is a train driver and has to drive cargo trains between cities.
4+
Although your friend isn't amazing with handling the computers and would like some help with it.
5+
Your friend would like your help organizing the train and correcting the mistakes in the data.
46

57

68
```exercism/note
@@ -13,7 +15,8 @@ Your friend has been keeping track of how much each wagon weighs. Although they
1315

1416
```exercism/note
1517
16-
Implement a function `getListOfWagons` that accepts an unknown amount of whole numbers that contains the weight of each wagon. It should return an array of all the wagon weights.
18+
Implement a function `getListOfWagons` that accepts an unknown amount of whole numbers that contains the weight of each wagon.
19+
It should return an array of all the wagon weights.
1720
1821
```
1922

@@ -24,7 +27,8 @@ getListOfWagons(5, 7, 12, 3, 14, 8, 3);
2427

2528
## 2. Move the first two elements to the end of the array
2629

27-
Now that you got a general feel for handling your friend's data. Your friend has noticed that the first two days' values are not in the correct place. Your friend would like you to move the first two days' value to the end of the array.
30+
Now that you got a general feel for handling your friend's data. Your friend has noticed that the first two days' values are not in the correct place.
31+
Your friend would like you to move the first two days' value to the end of the array.
2832

2933
```exercism/note
3034

0 commit comments

Comments
 (0)