We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6178a0d + 3ec5ed7 commit bb0cb5eCopy full SHA for bb0cb5e
2 files changed
MODULE.md
@@ -707,7 +707,7 @@
707
708
pureResolve :: forall a b. b -> Promise a b
709
710
- then' :: forall a b c d. (b -> Promise c d) -> Promise a b -> Promise c d
+ then' :: forall a b c. (b -> Promise a c) -> Promise a b -> Promise a c
711
712
then'' :: forall a b c d. (b -> Promise c d) -> (a -> Promise c d) -> Promise a b -> Promise c d
713
src/Angular/Promise.purs
@@ -58,7 +58,7 @@ foreign import thenFn'
58
\ } "
59
:: forall a b c d. Fn2 (b -> Promise c d) (Promise a b) (Promise c d)
60
61
-then' :: forall a b c d. (b -> Promise c d) -> Promise a b -> Promise c d
+then' :: forall a b c. (b -> Promise a c) -> Promise a b -> Promise a c
62
then' = runFn2 thenFn'
63
64
foreign import thenFn''
0 commit comments