Skip to content

Commit

Permalink
dunai: Add space after comma (KSG Haskell 1.3.0 - 4.3.5). Refs #285.
Browse files Browse the repository at this point in the history
A single space should also appear after the comma (,) in lists and
tuples.
  • Loading branch information
ivanperez-keera committed Jun 3, 2022
1 parent c9b782f commit a0eb078
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ import Data.MonadicStreamFunction.InternalCore
instance MonadFix m => ArrowLoop (MSF m) where
loop :: MSF m (b, d) (c, d) -> MSF m b c
loop sf = MSF $ \a -> do
rec ((b,c), sf') <- unMSF sf (a, c)
rec ((b, c), sf') <- unMSF sf (a, c)
return (b, loop sf')

0 comments on commit a0eb078

Please sign in to comment.