1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00

🔥 redundant parens.

This commit is contained in:
Rob Rix 2018-05-15 21:48:34 -04:00
parent 5805a90f9c
commit 46a44854b4

View File

@ -9,7 +9,7 @@ import Prologue
-- | A map of 'Configuration's to 'Set's of resulting values & 'Heap's.
newtype Cache term location cell value = Cache { unCache :: Monoidal.Map (Configuration term location cell value) (Set (Cached location cell value)) }
deriving (Eq, Lower, Monoid, Ord, Reducer (Configuration term location cell value, (Cached location cell value)), Semigroup)
deriving (Eq, Lower, Monoid, Ord, Reducer (Configuration term location cell value, Cached location cell value), Semigroup)
type Cached location cell value = (value, Heap location cell value)