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

Commits:

1 changed file:

Changes:

  • libraries/ghc-internal/src/GHC/Internal/Control/Monad.hs
    ... ... @@ -314,7 +314,7 @@ Core: https://gitlab.haskell.org/ghc/ghc/issues/11795#note_118976
    314 314
     -- | @'replicateM' n act@ performs the action @act@ @n@ times,
    
    315 315
     -- and then returns the list of results.
    
    316 316
     --
    
    317
    --- @replicateM n (pure x) == 'replicate' n x@
    
    317
    +-- @replicateM n (pure x) == pure ('replicate' n x)@
    
    318 318
     --
    
    319 319
     -- ==== __Examples__
    
    320 320
     --