From 8351f8ad4f4490476b36dd916b51233354ced3a0 Mon Sep 17 00:00:00 2001 From: Ivan Perez Date: Sat, 14 May 2022 19:56:40 -0400 Subject: [PATCH] yampa: Adjust format of export lists (KSG Haskell 1.3.0 - 4.2). Refs #212. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- yampa/src/FRP/Yampa/Hybrid.hs | 36 +++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/yampa/src/FRP/Yampa/Hybrid.hs b/yampa/src/FRP/Yampa/Hybrid.hs index 1d200279..7568590c 100644 --- a/yampa/src/FRP/Yampa/Hybrid.hs +++ b/yampa/src/FRP/Yampa/Hybrid.hs @@ -8,24 +8,24 @@ -- Portability : non-portable (GHC extensions) -- -- Discrete to continuous-time signal functions. -module FRP.Yampa.Hybrid ( - - -- * Wave-form generation - hold, - dHold, - trackAndHold, - dTrackAndHold, - - -- * Accumulators - accum, - accumHold, - dAccumHold, - accumBy, - accumHoldBy, - dAccumHoldBy, - accumFilter, - -) where +module FRP.Yampa.Hybrid + ( + -- * Wave-form generation + hold + , dHold + , trackAndHold + , dTrackAndHold + + -- * Accumulators + , accum + , accumHold + , dAccumHold + , accumBy + , accumHoldBy + , dAccumHoldBy + , accumFilter + ) + where import Control.Arrow