summaryrefslogtreecommitdiff
path: root/compiler/hsSyn
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2015-02-09 15:33:40 +0000
committerSimon Peyton Jones <simonpj@microsoft.com>2015-02-10 21:09:46 +0000
commit1e651b9092f882a392333c39be2aefd84b53a288 (patch)
treefb642922e59db223197449339d3cf7e3544f191f /compiler/hsSyn
parentf46360ed7139ff25741b381647b0a0b6d1000d84 (diff)
downloadhaskell-1e651b9092f882a392333c39be2aefd84b53a288.tar.gz
Comments only
Diffstat (limited to 'compiler/hsSyn')
-rw-r--r--compiler/hsSyn/HsBinds.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/hsSyn/HsBinds.hs b/compiler/hsSyn/HsBinds.hs
index 73c54ce684..1d31639b1a 100644
--- a/compiler/hsSyn/HsBinds.hs
+++ b/compiler/hsSyn/HsBinds.hs
@@ -627,7 +627,10 @@ data Sig name
-- 'ApiAnnotation.AnnComma'
-- For details on above see note [Api annotations] in ApiAnnotation
- TypeSig [Located name] (LHsType name) (PostRn name [Name])
+ TypeSig
+ [Located name] -- LHS of the signature; e.g. f,g,h :: blah
+ (LHsType name) -- RHS of the signature
+ (PostRn name [Name]) -- Wildcards (both named and anonymous) of the RHS
-- | A pattern synonym type signature
--