Skip to content

Commit 77837e5

Browse files
committed
Fix MergeSort.hs
1 parent b961a64 commit 77837e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/MergeSort.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ mergeSort :: (U.Unbox a, Ord a) => U.Vector a -> U.Vector a
3535
mergeSort = mergeSortBy compare
3636

3737
sortVector :: (G.Vector v a, Ord a) => v a -> v a
38-
sortVector v = G.create do
38+
sortVector v = G.create $ do
3939
v' <- G.thaw v
4040
A.sort v'
4141
return v'

0 commit comments

Comments
 (0)