summaryrefslogtreecommitdiff
path: root/compiler/GHC/Runtime/Heap/Inspect.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Runtime/Heap/Inspect.hs')
-rw-r--r--compiler/GHC/Runtime/Heap/Inspect.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/GHC/Runtime/Heap/Inspect.hs b/compiler/GHC/Runtime/Heap/Inspect.hs
index d3acf5ffed..dc01a161af 100644
--- a/compiler/GHC/Runtime/Heap/Inspect.hs
+++ b/compiler/GHC/Runtime/Heap/Inspect.hs
@@ -267,10 +267,10 @@ ppr_termM1 :: Monad m => Term -> m SDoc
ppr_termM1 Prim{valRaw=words, ty=ty} =
return $ repPrim (tyConAppTyCon ty) words
ppr_termM1 Suspension{ty=ty, bound_to=Nothing} =
- return (char '_' <+> whenPprDebug (text "::" <> ppr ty))
+ return (char '_' <+> whenPprDebug (dcolon <> ppr ty))
ppr_termM1 Suspension{ty=ty, bound_to=Just n}
--- | Just _ <- splitFunTy_maybe ty = return$ ptext (sLit("<function>")
- | otherwise = return$ parens$ ppr n <> text "::" <> ppr ty
+-- | Just _ <- splitFunTy_maybe ty = return$ text "<function>"
+ | otherwise = return$ parens$ ppr n <> dcolon <> ppr ty
ppr_termM1 Term{} = panic "ppr_termM1 - Term"
ppr_termM1 RefWrap{} = panic "ppr_termM1 - RefWrap"
ppr_termM1 NewtypeWrap{} = panic "ppr_termM1 - NewtypeWrap"