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 =
5353 constrainDeclsHelp decls finalConstraint identity
5454
5555
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
5757constrainDeclsHelp decls finalConstraint cont =
5858 case decls of
5959 Can . Declare def otherDecls ->
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ foldrMHelp callback ( list, result ) =
137137
138138foldM : (b -> a -> IO b ) -> b -> List a -> IO b
139139foldM f b list =
140- loop ( foldMHelp f) ( List . reverse list, b )
140+ loop ( foldMHelp f) ( list, b )
141141
142142
143143foldMHelp : (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