File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
lib/Language/Haskell/Stylish Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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--------------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments