diff options
author | Jan HrĨek <honza.hrk@gmail.com> | 2020-06-24 15:55:39 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-06-28 09:20:22 -0400 |
commit | 68530b1cd45629e5a353a37df80195ac54d26ade (patch) | |
tree | a6aa929d32d9c1caff4ca57c5ffde238d7c9717a /compiler/GHC/Stg/Unarise.hs | |
parent | 42f797b0ad034a92389e7081aa50ef4ab3434d01 (diff) | |
download | haskell-68530b1cd45629e5a353a37df80195ac54d26ade.tar.gz |
Fix duplicated words and typos in comments and user guide
Diffstat (limited to 'compiler/GHC/Stg/Unarise.hs')
-rw-r--r-- | compiler/GHC/Stg/Unarise.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Stg/Unarise.hs b/compiler/GHC/Stg/Unarise.hs index aafd28d73b..3f417ae586 100644 --- a/compiler/GHC/Stg/Unarise.hs +++ b/compiler/GHC/Stg/Unarise.hs @@ -672,7 +672,7 @@ unariseArgBinder is_con_arg rho x = -- -- While not unarising the binder in this case does not break any programs -- (because it unarises to a single variable), it triggers StgLint as we - -- break the the post-unarisation invariant that says unboxed tuple/sum + -- break the post-unarisation invariant that says unboxed tuple/sum -- binders should vanish. See Note [Post-unarisation invariants]. | isUnboxedSumType (idType x) || isUnboxedTupleType (idType x) -> do x' <- mkId (mkFastString "us") (primRepToType rep) |