From 6d83b25afe7ab02c334671eaaf79ee717fdc85b5 Mon Sep 17 00:00:00 2001 From: Phil Freeman Date: Sun, 15 Feb 2015 22:17:36 -0800 Subject: [PATCH] More fixing docs --- src/Data/Enum.purs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Data/Enum.purs b/src/Data/Enum.purs index b946f00..d9db400 100644 --- a/src/Data/Enum.purs +++ b/src/Data/Enum.purs @@ -115,10 +115,9 @@ module Data.Enum if e <= to then Just $ Tuple e (e + step) -- Output the value e, set the next state to (e + step) else Nothing -- End of the collection. - ) from -- starting value/state. + ) from - - -- | Instances + -- | ## Instances instance enumChar :: Enum Char where cardinality = Cardinality (65535 + 1)