Skip to content

Commit

Permalink
Fix doc issue
Browse files Browse the repository at this point in the history
  • Loading branch information
EarthCitizen committed Oct 7, 2016
1 parent 5328573 commit a4a3266
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions escape-artist.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ description:
data ABC = A | B deriving (Show, Eq)
.
instance ToEscapable ABC where
toEscapable (A) = FgRed $ show A
toEscapable (B) = FgGreen $ show B
  toEscapable (A) = FgRed $ show A
  toEscapable (B) = FgGreen $ show B
.
instance (ToEscapable a) => ToEscapable (Maybe a) where
toEscapable (Just a) = FgGreen \"Just\" \<\> Inherit \" \" \<\> FgYellow a
toEscapable a = FgRed $ show a
&#x20; toEscapable (Just a) = FgGreen \"Just\" \<\> Inherit \" \" \<\> FgYellow a
&#x20; toEscapable a = FgRed $ show a
@
.
Comprehensive Documentation
Expand Down

0 comments on commit a4a3266

Please sign in to comment.