Skip to content

Commit

Permalink
Fix name of bubble sort
Browse files Browse the repository at this point in the history
  • Loading branch information
tbsklg committed Jun 16, 2024
1 parent c597178 commit 6e8e22d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Kyu7/BubbleSortOnce.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Kyu7.BubblesortOnce (bubblesortOnce) where
module Kyu7.BubbleSortOnce (bubblesortOnce) where

bubblesortOnce :: [Int] -> [Int]
bubblesortOnce [] = []
Expand Down
2 changes: 1 addition & 1 deletion test/Kyu7/BubblesortOnceSpec.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Kyu7.BubblesortOnceSpec (spec) where

import Kyu7.BubblesortOnce (bubblesortOnce)
import Kyu7.BubbleSortOnce (bubblesortOnce)
import Test.Hspec

spec :: Spec
Expand Down

0 comments on commit 6e8e22d

Please sign in to comment.