summaryrefslogtreecommitdiffhomepage
path: root/README.markdown
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2012-05-28 18:01:23 +0200
committerJasper Van der Jeugt <m@jaspervdj.be>2012-05-28 18:01:23 +0200
commite1b593f9dfff922b608e137a976c07c0b2f948ec (patch)
tree814086fdbfa806b9bd694cb77e59e3e824af2568 /README.markdown
parent7dc7db78a4d6d84f8d487021fbf27cf072a06a18 (diff)
downloadstylish-haskell-e1b593f9dfff922b608e137a976c07c0b2f948ec.tar.gz
Update README *again*
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown13
1 files changed, 5 insertions, 8 deletions
diff --git a/README.markdown b/README.markdown
index a482387..73c6f97 100644
--- a/README.markdown
+++ b/README.markdown
@@ -7,9 +7,10 @@ Introduction
------------
A simple Haskell code prettifier. The goal is not to format all of the code in
-a file, since I find those kind of tools often "get in the way".
+a file, since I find those kind of tools often "get in the way". However,
+manually cleaning up import statements etc. gets tedious very quickly.
-Instead, this tool just tries to help where necessary.
+This tool tries to help where necessary without getting in the way.
You can install it using `cabal install stylish-haskell`.
@@ -30,12 +31,10 @@ Example
Turns:
- -- | Some badly formatted Haskell code
-
{-# LANGUAGE ViewPatterns, TemplateHaskell #-}
{-# LANGUAGE GeneralizedNewtypeDeriving,
- ViewPatterns,
- ScopedTypeVariables #-}
+ ViewPatterns,
+ ScopedTypeVariables #-}
module Bad where
@@ -47,8 +46,6 @@ Turns:
into:
- -- | Some badly formatted Haskell code
-
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TemplateHaskell #-}