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

Commits:

1 changed file:

Changes:

  • libraries/ghc-internal/src/GHC/Internal/Base.hs
    ... ... @@ -1353,9 +1353,9 @@ class Applicative m => Monad m where
    1353 1353
         --    bs a
    
    1354 1354
         -- @
    
    1355 1355
         --
    
    1356
    -    -- An alternative name for this function is \'bind\', but some people
    
    1357
    -    -- may refer to it as \'flatMap\', which results from it being equivalent
    
    1358
    -    -- to
    
    1356
    +    -- An alternative name for this function is \'bind\', because it
    
    1357
    +    -- is used to introduce bindings in monadic contexts, but some people may
    
    1358
    +    -- refer to it as \'flatMap\', which results from it being equivalent to
    
    1359 1359
         --
    
    1360 1360
         -- @\\x f -> 'join' ('fmap' f x) :: Monad m => m a -> (a -> m b) -> m b@
    
    1361 1361
         --