summaryrefslogtreecommitdiff
path: root/testsuite/tests/primops
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2016-03-30 11:04:37 +0200
committerGabor Greif <ggreif@gmail.com>2016-03-30 11:04:37 +0200
commita76e6f55c28a176c175b45b7279a1d20286bf56b (patch)
treed8d984e9853e6b9299886bf624539a844a2e7242 /testsuite/tests/primops
parentcb9a1e6875ac636f7c150ffacc272a2594a192dc (diff)
downloadhaskell-a76e6f55c28a176c175b45b7279a1d20286bf56b.tar.gz
Typos in non-code
Diffstat (limited to 'testsuite/tests/primops')
-rw-r--r--testsuite/tests/primops/should_run/T7689.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/primops/should_run/T7689.hs b/testsuite/tests/primops/should_run/T7689.hs
index 12045474de..0c441e252e 100644
--- a/testsuite/tests/primops/should_run/T7689.hs
+++ b/testsuite/tests/primops/should_run/T7689.hs
@@ -53,7 +53,7 @@ main = do
-- anything xored with itself is 0
print (I# (maxI# `xorI#` maxI#) == 0)
print (I# (minI# `xorI#` minI#) == 0)
- -- xoring with -1 is like bitwise negation (becuse -1 has all bits set to 1)
+ -- xoring with -1 is like bitwise negation (because -1 has all bits set to 1)
print (I# (minI# `xorI#` -1#) == maxI)
print (I# (maxI# `xorI#` -1#) == minI)
print (I# (-1# `xorI#` minI#) == maxI)