diff --git a/src/algorithms/sorting/cocktail-shaker-sort/CocktailShakerSort.js b/src/algorithms/sorting/cocktail-shaker-sort/CocktailShakerSort.js index 701d75a4a2..22e9b092b4 100644 --- a/src/algorithms/sorting/cocktail-shaker-sort/CocktailShakerSort.js +++ b/src/algorithms/sorting/cocktail-shaker-sort/CocktailShakerSort.js @@ -51,7 +51,7 @@ export default class CocktailShakerSort extends Sort { // Move the start point forward by one, // because the item at the start point is already in its correct position. start += 1; - + } return array; }