hlint tweaks

Did all sources except Remotes/* and Command/*
This commit is contained in:
Joey Hess 2011-07-15 03:12:05 -04:00
parent 9bb797c0ea
commit e784757376
32 changed files with 172 additions and 179 deletions

View file

@ -48,7 +48,7 @@ instance Show Key where
"" +++ y = y
x +++ "" = x
x +++ y = x ++ fieldSep:y
c ?: (Just v) = c:(show v)
c ?: (Just v) = c : show v
_ ?: _ = ""
readKey :: String -> Maybe Key
@ -73,4 +73,4 @@ readKey s = if key == Just stubKey then Nothing else key
addfield _ _ _ = Nothing
prop_idempotent_key_read_show :: Key -> Bool
prop_idempotent_key_read_show k = Just k == (readKey $ show k)
prop_idempotent_key_read_show k = Just k == (readKey . show) k

View file

@ -11,6 +11,7 @@ module Types.Remote where
import Control.Exception
import Data.Map as M
import Data.Ord
import qualified Git
import Types.Key
@ -62,4 +63,4 @@ instance Eq (Remote a) where
-- order remotes by cost
instance Ord (Remote a) where
compare x y = compare (cost x) (cost y)
compare = comparing cost