diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2012-08-22 16:15:04 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2012-08-22 16:15:04 +0100 |
commit | 6f96bc4709de3c2cf8c381db32b065bae734bd5a (patch) | |
tree | 6f66481f26232f11ae9fb9d891dbc488cf72a09f | |
parent | 61cc04d13766e6454d7cb56721d2fb78b7fa519d (diff) | |
download | haskell-6f96bc4709de3c2cf8c381db32b065bae734bd5a.tar.gz |
Tab elimination
-rw-r--r-- | compiler/main/HscTypes.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/HscTypes.lhs b/compiler/main/HscTypes.lhs index d8d8816355..793740e96e 100644 --- a/compiler/main/HscTypes.lhs +++ b/compiler/main/HscTypes.lhs @@ -1117,7 +1117,7 @@ mkPrintUnqualified dflags env = (qual_name, qual_mod) else NameNotInScope2 | otherwise = NameNotInScope1 -- Can happen if 'f' is bound twice in the module - -- Eg f = True; g = 0; f = False + -- Eg f = True; g = 0; f = False where mod = nameModule name occ = nameOccName name |