File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ constrainDecls decls finalConstraint =
53
53
constrainDeclsHelp decls finalConstraint identity
54
54
55
55
56
- constrainDeclsHelp : Can .Decls -> Type . Constraint -> (IO Type . Constraint -> IO Type . Constraint ) -> IO Type . Constraint
56
+ constrainDeclsHelp : Can .Decls -> Constraint -> (IO Constraint -> IO Constraint ) -> IO Constraint
57
57
constrainDeclsHelp decls finalConstraint cont =
58
58
case decls of
59
59
Can . Declare def otherDecls ->
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ foldrMHelp callback ( list, result ) =
137
137
138
138
foldM : (b -> a -> IO b ) -> b -> List a -> IO b
139
139
foldM f b list =
140
- loop ( foldMHelp f) ( List . reverse list, b )
140
+ loop ( foldMHelp f) ( list, b )
141
141
142
142
143
143
foldMHelp : (b -> a -> IO b ) -> ( List a , b ) -> IO (Step ( List a , b ) b )
You can’t perform that action at this time.
0 commit comments