diff options
author | simonpj@microsoft.com <unknown> | 2010-10-15 13:19:24 +0000 |
---|---|---|
committer | simonpj@microsoft.com <unknown> | 2010-10-15 13:19:24 +0000 |
commit | 6bf61003d2843cbe1c187882e19a8a996b437c12 (patch) | |
tree | 7492a4d94e2be1785ac699edd59bc271866f2651 | |
parent | 7d9e15f274a164e79902e12f0ecefbfddd86aff1 (diff) | |
download | haskell-6bf61003d2843cbe1c187882e19a8a996b437c12.tar.gz |
Comments and layout
-rw-r--r-- | compiler/typecheck/TcHsSyn.lhs | 2 | ||||
-rw-r--r-- | compiler/types/InstEnv.lhs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/typecheck/TcHsSyn.lhs b/compiler/typecheck/TcHsSyn.lhs index 5341a4f2ec..7c12410556 100644 --- a/compiler/typecheck/TcHsSyn.lhs +++ b/compiler/typecheck/TcHsSyn.lhs @@ -1076,7 +1076,7 @@ zonkEvBind env (EvBind var term) %************************************************************************ %* * -\subsection[BackSubst-Foreign]{Foreign exports} + Zonking types %* * %************************************************************************ diff --git a/compiler/types/InstEnv.lhs b/compiler/types/InstEnv.lhs index 09b9b5337e..7327992540 100644 --- a/compiler/types/InstEnv.lhs +++ b/compiler/types/InstEnv.lhs @@ -540,7 +540,7 @@ insert_overlapping new_item (item:items) \begin{code} instanceBindFun :: TyVar -> BindFlag instanceBindFun tv | isTcTyVar tv && isExistentialTyVar tv = Skolem - | otherwise = BindMe + | otherwise = BindMe -- Note [Binding when looking up instances] \end{code} |