Move comment out of haddocks.
This commit is contained in:
parent
1e9a5eedb9
commit
d1b904372d
1 changed files with 2 additions and 3 deletions
|
@ -137,10 +137,9 @@ data Link = Link
|
|||
} deriving Show
|
||||
|
||||
-- | If either a or b produce an empty constraint, produce an empty constraint.
|
||||
--
|
||||
-- This works because of:
|
||||
-- https://ghc.haskell.org/trac/ghc/wiki/NewAxioms/CoincidentOverlap
|
||||
type family Or (a :: Constraint) (b :: Constraint) :: Constraint where
|
||||
-- This works because of:
|
||||
-- https://ghc.haskell.org/trac/ghc/wiki/NewAxioms/CoincidentOverlap
|
||||
Or () b = ()
|
||||
Or a () = ()
|
||||
|
||||
|
|
Loading…
Reference in a new issue