diff options
author | Gabor Greif <ggreif@gmail.com> | 2016-11-21 11:11:09 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2016-11-21 11:11:09 +0100 |
commit | ea37b837413e1de269e9f6dd9d70436a805b0a5c (patch) | |
tree | bb05790c3471e2e9dde997c60cfa22e7666a4d75 /testsuite | |
parent | 6ad94d8fbc45fcb725506e9b8bc53a55c089d727 (diff) | |
download | haskell-ea37b837413e1de269e9f6dd9d70436a805b0a5c.tar.gz |
A few typos in comments
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/concurrent/prog001/Trit.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/typecheck/should_compile/twins.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/concurrent/prog001/Trit.hs b/testsuite/tests/concurrent/prog001/Trit.hs index b67d695984..c42fe6d4cf 100644 --- a/testsuite/tests/concurrent/prog001/Trit.hs +++ b/testsuite/tests/concurrent/prog001/Trit.hs @@ -61,7 +61,7 @@ subTrits x y = addTrits x (neg y) --- Shift left = *2 opertaion with Trit +-- Shift left = *2 operation with Trit shiftLeft :: Trit -> Trit shiftLeft (x, (y:ys)) = (x++ [y], ys) diff --git a/testsuite/tests/typecheck/should_compile/twins.hs b/testsuite/tests/typecheck/should_compile/twins.hs index 3fdc5b80df..99c77aa796 100644 --- a/testsuite/tests/typecheck/should_compile/twins.hs +++ b/testsuite/tests/typecheck/should_compile/twins.hs @@ -2,7 +2,7 @@ {-# LANGUAGE RankNTypes, LiberalTypeSynonyms #-} -- This test checks that deep skolemisation and deep --- instanatiation work right. A buggy prototype +-- instantiation work right. A buggy prototype -- of GHC 7.0, where the type checker generated wrong -- code, sent applyTypeToArgs into a loop. |