From b33ad37482c3c058daaa28fbb19cf5a9098c2fcb Mon Sep 17 00:00:00 2001 From: Abel Braaksma Date: Sun, 24 Dec 2023 18:24:02 +0100 Subject: [PATCH] Update src/FSharp.Control.TaskSeq.Test/TestUtils.fs --- src/FSharp.Control.TaskSeq.Test/TestUtils.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FSharp.Control.TaskSeq.Test/TestUtils.fs b/src/FSharp.Control.TaskSeq.Test/TestUtils.fs index e4bc723..8a871db 100644 --- a/src/FSharp.Control.TaskSeq.Test/TestUtils.fs +++ b/src/FSharp.Control.TaskSeq.Test/TestUtils.fs @@ -95,7 +95,7 @@ type DummyTaskFactory(µsecMin: int64<µs>, µsecMax: int64<µs>) = /// /// Creates dummy tasks with a randomized delay and a mutable state, /// to ensure we properly test whether processing is done ordered or not. - /// Uses the defaults for and + /// Uses the defaults for and /// with 10,000µs and 30,000µs respectively (or 10ms and 30ms). /// new() = DummyTaskFactory(10_000L<µs>, 30_000L<µs>)