Skip to content

Commit

Permalink
yampa: Adjust format of export lists (KSG Haskell 1.3.0 - 4.2). Refs #…
Browse files Browse the repository at this point in the history
…212.

For lists or tuple elements separated by commas in which each value is listed
in a separate line, and when the Haskell syntax allows it, the comma must be
the first character of every line but the first.

This commit adjust commas and indentation of export lists.
  • Loading branch information
ivanperez-keera committed May 15, 2022
1 parent 3f02906 commit 905cc07
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions yampa/src/FRP/Yampa/Arrow.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,18 @@
-- Portability : portable
--
-- Arrow helper functions.
module FRP.Yampa.Arrow (
-- * Arrow plumbing aids
dup,

-- * Liftings
arr2,
arr3,
arr4,
arr5,
) where
module FRP.Yampa.Arrow
(
-- * Arrow plumbing aids
dup

-- * Liftings
, arr2
, arr3
, arr4
, arr5
)
where

#if __GLASGOW_HASKELL__ < 710
import Control.Applicative (Applicative(..))
Expand Down

0 comments on commit 905cc07

Please sign in to comment.