Skip to content

Commit c55093e

Browse files
committed
format
1 parent 605507b commit c55093e

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
@@ -873,14 +873,14 @@ let partitionU = (l, p) =>
873873
nextX,
874874
switch nextY {
875875
| list{_, ...tail} => tail
876-
| list{} => assert false
876+
| list{} => assert(false)
877877
},
878878
)
879879
} else {
880880
(
881881
switch nextX {
882882
| list{_, ...tail} => tail
883-
| list{} => assert false
883+
| list{} => assert(false)
884884
},
885885
nextY,
886886
)

0 commit comments

Comments
 (0)