Skip to content

Commit ffe4ba4

Browse files
committed
(#807) Fix hindent remarks
1 parent 2683b0e commit ffe4ba4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Bot/CustomCommand.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module Bot.CustomCommand
1212
) where
1313

1414
import Bot.Expr
15+
import Bot.Flip
1516
import Bot.Replies
1617
import Command
1718
import Control.Monad
@@ -30,7 +31,6 @@ import Property
3031
import Reaction
3132
import Text.InterpolatedString.QM
3233
import Transport
33-
import Bot.Flip
3434

3535
data CustomCommand = CustomCommand
3636
{ customCommandName :: T.Text

src/Bot/Flip.hs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
module Bot.Flip where
22

33
import qualified Data.Map as M
4-
import qualified Data.Text as T
54
import Data.Maybe
5+
import qualified Data.Text as T
66

77
-- https://github.com/doherty/Text-UpsideDown/blob/master/lib/Text/UpsideDown.pm
88
-- http://www.fileformat.info/convert/text/upside-down-map.htm
9-
109
flipText :: T.Text -> T.Text
1110
flipText = T.map (\x -> fromMaybe x $ M.lookup x table) . T.reverse
1211

0 commit comments

Comments
 (0)