Skip to content

Commit 3323cbc

Browse files
Fix warnings revealed by v0.14.1 PS release (#43)
* Fix warnings revealed by v0.14.1 PS release * Update changelog
1 parent 1028e08 commit 3323cbc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ New features:
1111
Bugfixes:
1212

1313
Other improvements:
14+
- Fix warnings revealed by v0.14.1 PS release (#43 by @JordanMartinez)
1415

1516
## [v5.0.0](https://github.com/purescript/purescript-st/releases/tag/v5.0.0) - 2021-02-26
1617

src/Control/Monad/ST/Internal.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ instance monadRecST :: MonadRec (ST r) where
6262
Loop a' -> do
6363
e <- f a'
6464
void (write e r)
65-
Done b -> pure unit
65+
Done _ -> pure unit
6666
fromDone <$> read r
6767
where
6868
fromDone :: forall a b. Step a b -> b

0 commit comments

Comments
 (0)