Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC

Commits:

1 changed file:

Changes:

  • docs/users_guide/exts/data_kinds.rst
    ... ... @@ -349,7 +349,7 @@ The earlier example would need to be rewritten like this: ::
    349 349
           HCons :: a -> HList t -> HList (a : t)
    
    350 350
     
    
    351 351
         data Tuple :: Tuple2 Type Type -> Type where
    
    352
    -      Tuple :: a -> b -> Tuple2 a b
    
    352
    +      Tuple :: a -> b -> Tuple (a, b)
    
    353 353
     
    
    354 354
         foo0 :: HList []
    
    355 355
         foo0 = HNil