Skip to content

Commit 67dfa26

Browse files
committed
format
1 parent a65461c commit 67dfa26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Core__List.res

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -870,14 +870,14 @@ let partitionU = (l, p) =>
870870
nextX,
871871
switch nextY {
872872
| list{_, ...tail} => tail
873-
| list{} => assert false
873+
| list{} => assert(false)
874874
},
875875
)
876876
} else {
877877
(
878878
switch nextX {
879879
| list{_, ...tail} => tail
880-
| list{} => assert false
880+
| list{} => assert(false)
881881
},
882882
nextY,
883883
)

0 commit comments

Comments
 (0)