From b4d2a5c6be89f5a40023a2cf2acf65bcc4816a04 Mon Sep 17 00:00:00 2001 From: Dre <114628590+a-lipson@users.noreply.github.com> Date: Mon, 18 Sep 2023 15:48:00 -0700 Subject: [PATCH] fixed typo in ioeither ChainFirstIOK doc line --- ioeither/ioeither.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioeither/ioeither.go b/ioeither/ioeither.go index 32c5544..a04fd9b 100644 --- a/ioeither/ioeither.go +++ b/ioeither/ioeither.go @@ -187,7 +187,7 @@ func MonadChainFirstIOK[E, A, B any](ma IOEither[E, A], f func(A) I.IO[B]) IOEit return G.MonadChainFirstIOK(ma, f) } -// ChainFirsIOKt runs the monad returned by the function but returns the result of the original monad +// ChainFirsIOK runs the monad returned by the function but returns the result of the original monad func ChainFirstIOK[E, A, B any](f func(A) I.IO[B]) func(IOEither[E, A]) IOEither[E, A] { return G.ChainFirstIOK[IOEither[E, A]](f) }