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 }