Skip to content
This repository was archived by the owner on Jul 25, 2022. It is now read-only.

Commit a2b23a0

Browse files
committed
Fix the type of append
1 parent 39eb96b commit a2b23a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JL/Functions.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ appendf =
413413
(ConstantCore (StringConstant xs'), ConstantCore (StringConstant ys')) ->
414414
(ConstantCore (StringConstant (xs' <> ys')))
415415
_ -> error "can only append two sequences of the same type"))))
416-
, definitionType = FunctionType JSONType JSONType
416+
, definitionType = FunctionType JSONType (FunctionType JSONType JSONType)
417417
}
418418

419419
nubf :: Definition

0 commit comments

Comments
 (0)