Skip to content

Commit 9b51e48

Browse files
author
askeblad
authored
typos (#60)
1 parent cef7be4 commit 9b51e48

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/src/Test/Framework/Runners/ThreadPool.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ poolWorker input_chan output_chan = do
7171
poolWorker input_chan output_chan
7272

7373
-- | Keep grabbing items out of the infinite list of worker outputs until we have
74-
-- recieved word that all of the workers have shut down. This lets us turn a possibly
74+
-- received word that all of the workers have shut down. This lets us turn a possibly
7575
-- infinite list of outputs into a certainly finite one suitable for use with reorderFrom.
7676
takeWhileWorkersExist :: Int -> [WorkerEvent token a] -> [(token, a)]
7777
takeWhileWorkersExist worker_count events

core/src/Test/Framework/Runners/XML/JUnitWriter.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import Text.XML.Light ( ppTopElement, unqual, unode
1818
-- | An overall description of the test suite run. This is currently
1919
-- styled after the JUnit xml. It contains records that are not yet
2020
-- used, however, it provides a sensible structure to populate as we
21-
-- are able, and the serialiazation code behaves as though these are
21+
-- are able, and the serialization code behaves as though these are
2222
-- filled.
2323
data RunDescription = RunDescription {
2424
errors :: Int -- ^ The number of tests that triggered error

core/test/Test/Framework/Tests/Runners/XMLTests.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ property = morallyDubiousIOProperty . fmap isJust . parseSerialize
103103
parseSerialize :: RunDescription -> IO (Maybe XML.Document)
104104
parseSerialize = XML.parseMemory_ . UTF8.fromString . serialize False
105105

106-
-- | Verify that the group names are properly pre-pended to sub-tests.
106+
-- | Verify that the group names are properly prepended to sub-tests.
107107
test :: Test
108108
test = TestLabel "Check the composition of group names" $ TestCase $
109109
XML.findAttr (XML.unqual "classname") x @?= Just "top.g1"

0 commit comments

Comments
 (0)