From f4814ba143c6fe6d8eed5afcf97f02a9d27be438 Mon Sep 17 00:00:00 2001 From: Charlie Moore Date: Mon, 4 Oct 2021 18:49:31 -0400 Subject: [PATCH] Fix typo --- Sorts/CycleSort.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorts/CycleSort.js b/Sorts/CycleSort.js index c17be63b3..e5e9c1319 100644 --- a/Sorts/CycleSort.js +++ b/Sorts/CycleSort.js @@ -20,7 +20,7 @@ function cycleSort (list) { position++ } } - // if its the same continue + // if it is the same, continue if (position === cycleStart) { continue }