diff options
Diffstat (limited to 'testsuite/tests/concurrent')
-rw-r--r-- | testsuite/tests/concurrent/prog003/Main.lhs | 2 | ||||
-rw-r--r-- | testsuite/tests/concurrent/prog003/MainMVarList.lhs | 2 |
2 files changed, 2 insertions, 2 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" |