summaryrefslogtreecommitdiff
path: root/ghc/GHCi
diff options
context:
space:
mode:
authornineonine <mail4chemik@gmail.com>2021-05-07 21:40:22 -0700
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-05-19 23:33:40 -0400
commit29d104c6e6055a5190edeb2607d54dda4f0e8abd (patch)
tree7e26061ef3fee3b3fcaec7cb7ac57ea734348ae9 /ghc/GHCi
parent38faeea1a94072ffd9f459d9fe570f06bc1da84a (diff)
downloadhaskell-29d104c6e6055a5190edeb2607d54dda4f0e8abd.tar.gz
Implement :info for record pattern synonyms (#19462)
Diffstat (limited to 'ghc/GHCi')
-rw-r--r--ghc/GHCi/UI.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs
index 7817cd974f..4e90e930c2 100644
--- a/ghc/GHCi/UI.hs
+++ b/ghc/GHCi/UI.hs
@@ -1538,7 +1538,7 @@ infoThing allInfo str = do
(catMaybes mb_stuffs)
return $ vcat (intersperse (text "") $ map pprInfo filtered)
- -- Filter out names whose parent is also there Good
+ -- Filter out names whose parent is also there. Good
-- example is '[]', which is both a type and data
-- constructor in the same type
filterOutChildren :: (a -> TyThing) -> [a] -> [a]