From ef389021f9481f5455d727599c6f22e03fad9bc9 Mon Sep 17 00:00:00 2001 From: Ivan Perez Date: Sat, 25 Mar 2023 17:58:43 +0000 Subject: [PATCH] yampa: Remove trailing spaces (KSG Haskell 1.3.0 - 4.5.4.2). Refs #255. Do not leave any spaces at the end of any line. --- yampa/examples/yampa-game/MainWiimote.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yampa/examples/yampa-game/MainWiimote.hs b/yampa/examples/yampa-game/MainWiimote.hs index 3694a5ea..ebae199a 100644 --- a/yampa/examples/yampa-game/MainWiimote.hs +++ b/yampa/examples/yampa-game/MainWiimote.hs @@ -23,7 +23,7 @@ height = 480 -- The first two arguments to reactimate are the value of the input signal -- at time zero and at subsequent times, together with the times between -- samples. --- +-- -- The third argument to reactimate is the output consumer that renders -- the signal. -- @@ -110,7 +110,7 @@ senseWiimote wmdev = do let finX = width * propX finY = height * propY - return (finX, finY) + return (finX, finY) -- | Initializes the wiimote, optionally returning the sensing function. It -- returns Nothing if the Wiimote cannot be detected. Users should have a BT