explain 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+1/−2 lines, 2 files
Files
- explain.cabal +1/−1
- src/Main.hs +0/−1
explain.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: explain-version: 0.1.0.0+version: 0.1.0.1 synopsis: Show how expressions are parsed description: @explain expr@ parenthesizes @expr@ to show you how it's parsed.
src/Main.hs view
@@ -34,7 +34,6 @@ ] } expS of ParseOk e -> do- print e displayIO stdout . renderPretty 0.4 10000 . hang 4 $ explain e putChar '\n' s@ParseFailed{} -> error $ show s