diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-01-12 15:10:48 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-01-13 18:13:44 +0100 |
commit | d3ad013526b2f42b4e93ee294883e93ae988b7d8 (patch) | |
tree | 7a62b48ce6bc10742da4ef385103176b523319b1 /testsuite/tests/concurrent | |
parent | 6b976eb89fe72827f226506d16d3721ba4e28bab (diff) | |
download | haskell-d3ad013526b2f42b4e93ee294883e93ae988b7d8.tar.gz |
Typos in comments
Diffstat (limited to 'testsuite/tests/concurrent')
-rw-r--r-- | testsuite/tests/concurrent/prog003/CASList.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/concurrent/prog003/MVarListLockCoupling.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/concurrent/prog003/CASList.hs b/testsuite/tests/concurrent/prog003/CASList.hs index 445af790a3..0c4c7a0186 100644 --- a/testsuite/tests/concurrent/prog003/CASList.hs +++ b/testsuite/tests/concurrent/prog003/CASList.hs @@ -45,7 +45,7 @@ type Iterator a = IORef (IORef (List a)) ------------------------------------------- --- auxilliary functions +-- auxiliary functions diff --git a/testsuite/tests/concurrent/prog003/MVarListLockCoupling.hs b/testsuite/tests/concurrent/prog003/MVarListLockCoupling.hs index 0820ccd0d2..642529cdf8 100644 --- a/testsuite/tests/concurrent/prog003/MVarListLockCoupling.hs +++ b/testsuite/tests/concurrent/prog003/MVarListLockCoupling.hs @@ -44,7 +44,7 @@ type Iterator a = IORef (MVar (List a)) -- iterators are private ------------------------------------------- --- auxilliary functions +-- auxiliary functions |