Skip to content

Commit

Permalink
Small cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
cgibbard committed May 9, 2019
1 parent 43eb9e5 commit 43df121
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ Provides Template Haskell expressions for deriving `ToJSON` and `FromJSON` insta
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE UndecidableInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE PolyKinds #-}

{-# OPTIONS_GHC -ddump-splices #-}

import Data.Aeson
import Data.Aeson.GADT.TH
Expand Down Expand Up @@ -50,7 +47,7 @@ data LabelledGraphEdit v vm em :: * -> * where
LabelledGraphEdit_SetEdgeProperties :: v -> v -> em -> LabelledGraphEdit v vm em ()

-- | PropertyGraphEdit operatios for `PropertyGraph`
data PropertyGraphEdit v (vp :: * -> *) ep r where
data PropertyGraphEdit v vp ep r where
PropertyGraphEdit_ClearAll :: PropertyGraphEdit v vp ep ()
PropertyGraphEdit_AddVertex :: (DMap vp Identity) -> PropertyGraphEdit v vp ep v
PropertyGraphEdit_AddEdge :: v -> v -> (DMap ep Identity) -> PropertyGraphEdit v vp ep ()
Expand Down

0 comments on commit 43df121

Please sign in to comment.