From d8e512dcf1c61addcbd79ceb6f2400db64fd7e8a Mon Sep 17 00:00:00 2001 From: Pietro Cerutti Date: Sat, 20 Apr 2024 11:09:58 +0200 Subject: [PATCH] Fix typo free.lisp --- library/monad/free.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/monad/free.lisp b/library/monad/free.lisp index 8b87a665..564eaada 100644 --- a/library/monad/free.lisp +++ b/library/monad/free.lisp @@ -26,7 +26,7 @@ (define-type (Free :f :a) "`Free :f` gives you a Monad instance for any `Functor :f`. -Refernces: [here](https://serokell.io/blog/introduction-to-free-monads) and [here](https://www.tweag.io/blog/2018-02-05-free-monads/)" +References: [here](https://serokell.io/blog/introduction-to-free-monads) and [here](https://www.tweag.io/blog/2018-02-05-free-monads/)" (Free (:f (Free :f :a))) (Val :a))