summaryrefslogtreecommitdiff
path: root/compiler/GHC/Core/RoughMap.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Core/RoughMap.hs')
-rw-r--r--compiler/GHC/Core/RoughMap.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Core/RoughMap.hs b/compiler/GHC/Core/RoughMap.hs
index cc64e96149..30145ee544 100644
--- a/compiler/GHC/Core/RoughMap.hs
+++ b/compiler/GHC/Core/RoughMap.hs
@@ -180,7 +180,7 @@ Where mightMatch is defined like this:
mightMatch [] [] = True -- A perfectly sized match might match
mightMatch key [] = True -- A shorter lookup key matches everything
mightMatch [] (_:_) = True -- If the lookup key is longer, then still might match
- -- Note [RoughMatch and beta reduction]
+ -- Note [RoughMap and beta reduction]
mightMatch (k:ks) (lk:lks) =
= case (k,lk) of
-- Standard case, matching on a specific known TyCon.