diff --git a/CHANGELOG.md b/CHANGELOG.md index 09559f5..e74d9f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ New features: Bugfixes: Other improvements: +- Fix warnings revealed by v0.14.1 PS release (#37 by @JordanMartinez) ## [v5.0.0](https://github.com/purescript/purescript-tailrec/releases/tag/v5.0.0) - 2021-02-26 diff --git a/src/Control/Monad/Rec/Class.purs b/src/Control/Monad/Rec/Class.purs index 981c5cb..4c24ddb 100644 --- a/src/Control/Monad/Rec/Class.purs +++ b/src/Control/Monad/Rec/Class.purs @@ -106,7 +106,7 @@ instance monadRecEffect :: MonadRec Effect where e <- f a' _ <- Ref.write e r pure false - Done b -> pure true + Done _ -> pure true fromDone <$> Ref.read r where fromDone :: forall a b. Step a b -> b