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

Commits:

1 changed file:

Changes:

  • libraries/ghc-internal/src/GHC/Internal/Base.hs
    ... ... @@ -961,7 +961,7 @@ class Functor f where
    961 961
         -- Note that for any type constructor with more than one parameter (e.g., 'Either'),
    
    962 962
         -- only the last type parameter can be modified with `fmap` (e.g., `b` in @Either a b@).
    
    963 963
         --
    
    964
    -    -- Some type constructors with two parameters or more have a @'Data.Bifunctor'@ instance that allows
    
    964
    +    -- Some type constructors with two parameters or more have a @'Data.Bifunctor.Bifunctor'@ instance that allows
    
    965 965
         -- both the last and the penultimate parameters to be mapped over.
    
    966 966
         --
    
    967 967
         -- ==== __Examples__