1
1
mirror of https://github.com/github/semantic.git synced 2025-01-03 21:16:12 +03:00

Remove needless parens.

This commit is contained in:
Rob Rix 2015-11-30 16:17:37 -05:00
parent 4a3c63473e
commit e4c7ce28c0

View File

@ -24,5 +24,5 @@ ses diffTerms cost (a : as) (b : bs) = case diffTerms a b of
sumCost script = sum $ cost <$> script
copy diff = diff : ses diffTerms cost as bs
diffAt :: (Integer, Integer) -> [(Term String Info)] -> [(Term String Info)] -> State (Map.Map (Integer, Integer) [(Diff String Info, Integer)]) [Diff String Info]
diffAt :: (Integer, Integer) -> [Term String Info] -> [Term String Info] -> State (Map.Map (Integer, Integer) [(Diff String Info, Integer)]) [Diff String Info]
diffAt (i, j) as bs = _