Skip to content

Commit be4c965

Browse files
Fix typo (#314)
1 parent 3f4edcc commit be4c965

File tree

1 file changed

+6
-6
lines changed
  • lib/Language/Haskell/Stylish

1 file changed

+6
-6
lines changed

lib/Language/Haskell/Stylish/Util.hs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ module Language.Haskell.Stylish.Util
2222

2323
, toRealSrcSpan
2424

25-
, traceOutputtable
26-
, traceOutputtableM
25+
, traceOutputable
26+
, traceOutputableM
2727

2828
, unguardedRhsBody
2929
, rhsBody
@@ -213,14 +213,14 @@ flagEnds = \case
213213

214214

215215
--------------------------------------------------------------------------------
216-
traceOutputtable :: Outputable.Outputable a => String -> a -> b -> b
217-
traceOutputtable title x =
216+
traceOutputable :: Outputable.Outputable a => String -> a -> b -> b
217+
traceOutputable title x =
218218
trace (title ++ ": " ++ (Outputable.showSDocUnsafe $ Outputable.ppr x))
219219

220220

221221
--------------------------------------------------------------------------------
222-
traceOutputtableM :: (Outputable.Outputable a, Monad m) => String -> a -> m ()
223-
traceOutputtableM title x = traceOutputtable title x $ pure ()
222+
traceOutputableM :: (Outputable.Outputable a, Monad m) => String -> a -> m ()
223+
traceOutputableM title x = traceOutputable title x $ pure ()
224224

225225

226226
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)