[commit: ghc] master: Fix a forward reference to a Note (ccc918c)

git at git.haskell.org git at git.haskell.org
Wed Dec 21 16:47:56 UTC 2016


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/ccc918cdc8b2d147c4dbc29bfc87c058862a97cd/ghc

>---------------------------------------------------------------

commit ccc918cdc8b2d147c4dbc29bfc87c058862a97cd
Author: Ryan Scott <ryan.gl.scott at gmail.com>
Date:   Wed Dec 21 11:40:06 2016 -0500

    Fix a forward reference to a Note


>---------------------------------------------------------------

ccc918cdc8b2d147c4dbc29bfc87c058862a97cd
 compiler/hsSyn/Convert.hs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/hsSyn/Convert.hs b/compiler/hsSyn/Convert.hs
index efd0428..7749265 100644
--- a/compiler/hsSyn/Convert.hs
+++ b/compiler/hsSyn/Convert.hs
@@ -1363,8 +1363,8 @@ cvtInjectivityAnnotation (TH.InjectivityAnn annLHS annRHS)
 
 cvtPatSynSigTy :: TH.Type -> CvtM (LHsType RdrName)
 -- pattern synonym types are of peculiar shapes, which is why we treat
--- them separately from regular types; see NOTE [Pattern synonym
--- signatures and Template Haskell]
+-- them separately from regular types;
+-- see Note [Pattern synonym type signatures and Template Haskell]
 cvtPatSynSigTy (ForallT univs reqs (ForallT exis provs ty))
   | null exis, null provs = cvtType (ForallT univs reqs ty)
   | null univs, null reqs = do { l   <- getL



More information about the ghc-commits mailing list