summaryrefslogtreecommitdiff
path: root/testsuite/tests
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-02-01 11:29:47 +0100
committerGabor Greif <ggreif@gmail.com>2017-02-02 10:06:39 +0100
commit8dd82ead7ddd65348bcbea4e2bb8defce4253173 (patch)
tree22887ccbb12f2801b467ea0e05261ff6c036b9e9 /testsuite/tests
parenteedb3df0c1c28a7abc43705d614239c1c6199a1f (diff)
downloadhaskell-8dd82ead7ddd65348bcbea4e2bb8defce4253173.tar.gz
Spelling fixes
Diffstat (limited to 'testsuite/tests')
-rw-r--r--testsuite/tests/concurrent/prog003/Main.lhs2
-rw-r--r--testsuite/tests/concurrent/prog003/MainMVarList.lhs2
-rw-r--r--testsuite/tests/plugins/all.T2
-rw-r--r--testsuite/tests/plugins/plugins03.hs2
-rw-r--r--testsuite/tests/plugins/plugins03.stderr2
-rw-r--r--testsuite/tests/typecheck/should_compile/T6018.hs2
6 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/tests/concurrent/prog003/Main.lhs b/testsuite/tests/concurrent/prog003/Main.lhs
index e4e8ad790e..8062795bd2 100644
--- a/testsuite/tests/concurrent/prog003/Main.lhs
+++ b/testsuite/tests/concurrent/prog003/Main.lhs
@@ -209,7 +209,7 @@ just testing
> {-
> putStrLn "Start"
> executeTasks nl $ createTasks [1..len]
-> find nl (len+1) -- we try to find a non-existant element
+> find nl (len+1) -- we try to find a non-existent element
> -- this way, in the LazyList case, we will physically delete all (logically deleted) elements
> -}
> putStrLn "End"
diff --git a/testsuite/tests/concurrent/prog003/MainMVarList.lhs b/testsuite/tests/concurrent/prog003/MainMVarList.lhs
index 9bcf9b1240..3ec54cb75d 100644
--- a/testsuite/tests/concurrent/prog003/MainMVarList.lhs
+++ b/testsuite/tests/concurrent/prog003/MainMVarList.lhs
@@ -230,7 +230,7 @@ just testing
> {-
> putStrLn "Start"
> executeTasks nl $ createTasks [1..len]
-> find nl (len+1) -- we try to find a non-existant element
+> find nl (len+1) -- we try to find a non-existent element
> -- this way, in the LazyList case, we will physically delete all (logically deleted) elements
> -}
> putStrLn "End"
diff --git a/testsuite/tests/plugins/all.T b/testsuite/tests/plugins/all.T
index 580498ff2f..ea285dcf93 100644
--- a/testsuite/tests/plugins/all.T
+++ b/testsuite/tests/plugins/all.T
@@ -12,7 +12,7 @@ test('plugins02',
test('plugins03',
[pre_cmd('$MAKE -s --no-print-directory -C simple-plugin package.plugins03 TOP={top}')],
compile_fail,
- ['-package-db simple-plugin/pkg.plugins03/local.package.conf -fplugin Simple.NonExistantPlugin -package simple-plugin'])
+ ['-package-db simple-plugin/pkg.plugins03/local.package.conf -fplugin Simple.NonExistentPlugin -package simple-plugin'])
test('plugins04', [], multimod_compile_fail,
['plugins04', '-package ghc -fplugin HomePackagePlugin'])
diff --git a/testsuite/tests/plugins/plugins03.hs b/testsuite/tests/plugins/plugins03.hs
index 7cc679b38f..7857e823f0 100644
--- a/testsuite/tests/plugins/plugins03.hs
+++ b/testsuite/tests/plugins/plugins03.hs
@@ -1,4 +1,4 @@
--- Just used to test that we correctly handle non-existant plugins
+-- Just used to test that we correctly handle non-existent plugins
module Main where
-- The contents of this file are actually irrelevant
diff --git a/testsuite/tests/plugins/plugins03.stderr b/testsuite/tests/plugins/plugins03.stderr
index e04d80cb87..c02965ad1f 100644
--- a/testsuite/tests/plugins/plugins03.stderr
+++ b/testsuite/tests/plugins/plugins03.stderr
@@ -1,2 +1,2 @@
-<command line>: Could not find module ‘Simple.NonExistantPlugin’
+<command line>: Could not find module ‘Simple.NonExistentPlugin’
Use -v to see a list of the files searched for.
diff --git a/testsuite/tests/typecheck/should_compile/T6018.hs b/testsuite/tests/typecheck/should_compile/T6018.hs
index 91a67c5e57..b3094fe948 100644
--- a/testsuite/tests/typecheck/should_compile/T6018.hs
+++ b/testsuite/tests/typecheck/should_compile/T6018.hs
@@ -258,7 +258,7 @@ type IdSyn a = Id a
type family IdProxySyn (a :: k) b = r | r -> a
type instance IdProxySyn a b = (IdSyn a) b
--- this has bare variable in the RHS but all LHS varaiables are also bare so it
+-- this has bare variable in the RHS but all LHS variables are also bare so it
-- should be accepted
type family Fa (a :: k) (b :: k) = (r :: k2) | r -> k
type instance Fa a b = a