From 1c7301beea1b5937474347fd6c856e8a465e43fa Mon Sep 17 00:00:00 2001 From: Christoph Hegemann <6189397+kritzcreek@users.noreply.github.com> Date: Mon, 27 Apr 2020 16:15:54 +0200 Subject: [PATCH] Removes unnecessary type variable from docstring --- src/Effect/Exception.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Effect/Exception.purs b/src/Effect/Exception.purs index a22fbcd..89e1668 100644 --- a/src/Effect/Exception.purs +++ b/src/Effect/Exception.purs @@ -87,7 +87,7 @@ throw = throwException <<< error -- | For example: -- | -- | ```purescript --- | main :: forall eff. Effect Unit +-- | main :: Effect Unit -- | main = do -- | result <- try (readTextFile UTF8 "README.md") -- | case result of