diff --git a/exercises/concept/train-driver/train-driver.js b/exercises/concept/train-driver/train-driver.js index 0e62d4a501..b91900164e 100644 --- a/exercises/concept/train-driver/train-driver.js +++ b/exercises/concept/train-driver/train-driver.js @@ -18,7 +18,7 @@ export function getListOfWagons(a, b, c, d, e, f, g, h, i, j, k, l, m, n) { * Reorder the array of wagons by moving the first 2 wagons to the end of the array. * * @param {Iterable} ids - * @returns {number[]} reorderd list of wagons + * @returns {number[]} reordered list of wagons */ export function fixListOfWagons(ids) { throw new Error('Please implement the fixListOfWagons function');