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

Commits:

1 changed file:

Changes:

  • libraries/ghc-internal/src/GHC/Internal/Base.hs
    ... ... @@ -1047,7 +1047,7 @@ class Functor f where
    1047 1047
     -- * sequence computations and combine their results ('<*>' and 'liftA2').
    
    1048 1048
     --
    
    1049 1049
     -- A minimal complete definition must include implementations of 'pure'
    
    1050
    +-- and one of either '<*>' or 'liftA2'. If it defines both, then they must behave
    
    1050 1051
     -- the same as their default definitions:
    
    1051 1052
     --
    
    1052 1053
     --      @('<*>') = 'liftA2' 'id'@