summaryrefslogtreecommitdiff
path: root/compiler/vectorise/Vectorise
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-03-17 10:20:42 +0100
committerGabor Greif <ggreif@gmail.com>2017-03-17 10:20:42 +0100
commit7a38783b72f86afda14ada2155e63491ced2e7de (patch)
tree72982f34f101d023a6c54da9ae627084001d6dff /compiler/vectorise/Vectorise
parent138434fbef32ec86733747bdbc57f6da73cad500 (diff)
downloadhaskell-7a38783b72f86afda14ada2155e63491ced2e7de.tar.gz
Typos in manual and comments [ci skip]
Diffstat (limited to 'compiler/vectorise/Vectorise')
-rw-r--r--compiler/vectorise/Vectorise/Utils/Base.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/vectorise/Vectorise/Utils/Base.hs b/compiler/vectorise/Vectorise/Utils/Base.hs
index 071fab961c..42271091d7 100644
--- a/compiler/vectorise/Vectorise/Utils/Base.hs
+++ b/compiler/vectorise/Vectorise/Utils/Base.hs
@@ -222,7 +222,7 @@ pdataReprTyCon ty
--
pdataReprTyConExact :: TyCon -> VM TyCon
pdataReprTyConExact tycon
- = do { -- look up the representation tycon; if there is a match at all, it will be be exact
+ = do { -- look up the representation tycon; if there is a match at all, it will be exact
; -- (i.e.,' _tys' will be distinct type variables)
; (ptycon, _tys) <- pdataReprTyCon (tycon `mkTyConApp` mkTyVarTys (tyConTyVars tycon))
; return ptycon
@@ -235,7 +235,7 @@ pdataReprTyConExact tycon
--
pdatasReprTyConExact :: TyCon -> VM TyCon
pdatasReprTyConExact tycon
- = do { -- look up the representation tycon; if there is a match at all, it will be be exact
+ = do { -- look up the representation tycon; if there is a match at all, it will be exact
; (FamInstMatch { fim_instance = ptycon }) <- pdatasReprTyCon (tycon `mkTyConApp` mkTyVarTys (tyConTyVars tycon))
; return $ dataFamInstRepTyCon ptycon
}