summaryrefslogtreecommitdiff
path: root/compiler/utils
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2018-06-20 16:00:50 +0200
committerGabor Greif <ggreif@gmail.com>2018-06-20 16:24:21 +0200
commite839ee2f91f9bcd390ead98e830b9e1d7d7b9240 (patch)
treebe9049502d8b53cd295d5f503185190ffd680ef9 /compiler/utils
parent7363ba4561d4c224efd73542e1e3f7fd524e6d6d (diff)
downloadhaskell-e839ee2f91f9bcd390ead98e830b9e1d7d7b9240.tar.gz
A few more typofixes in docs/comments [ci skip]
Diffstat (limited to 'compiler/utils')
-rw-r--r--compiler/utils/Pair.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Pair.hs b/compiler/utils/Pair.hs
index 08b19be0b2..036dab062d 100644
--- a/compiler/utils/Pair.hs
+++ b/compiler/utils/Pair.hs
@@ -18,7 +18,7 @@ data Pair a = Pair { pFst :: a, pSnd :: a }
-- Note that Pair is a *unary* type constructor
-- whereas (,) is binary
--- The important thing about Pair is that it has a *homogenous*
+-- The important thing about Pair is that it has a *homogeneous*
-- Functor instance, so you can easily apply the same function
-- to both components
instance Functor Pair where