Merge pull request #15 from hapytex/improvement/redundant-dollar-2

remove redundant $s in Game.hs
This commit is contained in:
Sam Tay 2021-03-16 09:38:29 -04:00 committed by GitHub
commit 361eb0a221
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,8 +231,8 @@ drawInfo :: Game -> Widget Name
drawInfo g = hLimit 18 -- size of next piece box
$ vBox
[ drawNextShape (g ^. nextShape)
, padTop (Pad 1) $ drawHelp
, padTop (Pad 1) $ drawGameOver g
, padTop (Pad 1) drawHelp
, padTop (Pad 1) (drawGameOver g)
]
drawNextShape :: Tetrimino -> Widget Name
@ -258,7 +258,7 @@ drawHelp =
$ padTopBottom 1
$ vBox
$ map (uncurry drawKeyInfo)
$ [ ("Left" , "h, ←")
[ ("Left" , "h, ←")
, ("Right" , "l, →")
, ("Down" , "j, ↓")
, ("Rotate" , "k, ↑")