1
1
mirror of https://github.com/github/semantic.git synced 2025-01-03 13:02:37 +03:00

correct parameter booboo

This commit is contained in:
Ayman Nadeem 2019-01-11 17:19:02 -05:00
parent cca3cb868b
commit 77b35435d6

View File

@ -451,7 +451,7 @@ runArray = raiseHandler $ runArrayC . interpret
data Hash value (m :: * -> *) k
= Hash [(value, value)] (value -> k)
| KvPair value (value -> value -> k)
| KvPair value value (value -> k)
deriving (Functor)
instance HFunctor (Hash value) where