diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2016-06-23 14:54:24 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2016-06-24 11:04:24 +0100 |
commit | c871ce4903312402fc7f90089f61977c420e2c60 (patch) | |
tree | 668e79bd26245560d44b2bcb8af5bbfacc6db9f1 /compiler/iface | |
parent | d2958bd08a049b61941f078e51809c7e63bc3354 (diff) | |
download | haskell-c871ce4903312402fc7f90089f61977c420e2c60.tar.gz |
Comments around invisibility
Very minor
Diffstat (limited to 'compiler/iface')
-rw-r--r-- | compiler/iface/IfaceType.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/iface/IfaceType.hs b/compiler/iface/IfaceType.hs index 5f300424fc..f541431485 100644 --- a/compiler/iface/IfaceType.hs +++ b/compiler/iface/IfaceType.hs @@ -156,7 +156,7 @@ type IfaceForAllBndr = TyVarBndr IfaceTvBndr VisibilityFlag data IfaceTcArgs = ITC_Nil | ITC_Vis IfaceType IfaceTcArgs -- "Vis" means show when pretty-printing - | ITC_Invis IfaceKind IfaceTcArgs -- "Invis" means don't show when pretty-printin + | ITC_Invis IfaceKind IfaceTcArgs -- "Invis" means don't show when pretty-printing -- except with -fprint-explicit-kinds -- Encodes type constructors, kind constructors, |