From 31348d5ca34b1329a597dd64c7e2264b17d9fd3d Mon Sep 17 00:00:00 2001 From: t-powers <127955989+t-powers@users.noreply.github.com> Date: Wed, 18 Jun 2025 18:47:31 -0400 Subject: [PATCH] Update train-driver.js --- exercises/concept/train-driver/train-driver.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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');