We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1028e08 commit 3323cbcCopy full SHA for 3323cbc
CHANGELOG.md
@@ -11,6 +11,7 @@ New features:
11
Bugfixes:
12
13
Other improvements:
14
+- Fix warnings revealed by v0.14.1 PS release (#43 by @JordanMartinez)
15
16
## [v5.0.0](https://github.com/purescript/purescript-st/releases/tag/v5.0.0) - 2021-02-26
17
src/Control/Monad/ST/Internal.purs
@@ -62,7 +62,7 @@ instance monadRecST :: MonadRec (ST r) where
62
Loop a' -> do
63
e <- f a'
64
void (write e r)
65
- Done b -> pure unit
+ Done _ -> pure unit
66
fromDone <$> read r
67
where
68
fromDone :: forall a b. Step a b -> b
0 commit comments