Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Dec 17, 2023
1 parent f699cef commit 97d8d63
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/gleam/list.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,8 @@ fn merge_sort(
True ->
merge_down(
n,
ln - n,
ln
- n,
merge_sort(a, n, compare, False),
merge_sort(b, ln - n, compare, False),
[],
Expand All @@ -1247,7 +1248,8 @@ fn merge_sort(
False ->
merge_up(
n,
ln - n,
ln
- n,
merge_sort(a, n, compare, True),
merge_sort(b, ln - n, compare, True),
[],
Expand Down

0 comments on commit 97d8d63

Please sign in to comment.