Skip to content

Commit aa8916e

Browse files
MaximilianAlgehedcoot
authored andcommitted
Fix unintuitive name
1 parent 669d6b2 commit aa8916e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

io-sim/src/Control/Monad/IOSimPOR/Internal.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1437,8 +1437,8 @@ racingSteps s s' =
14371437
|| throwsTo s s'
14381438
|| throwsTo s' s)
14391439
where throwsTo s1 s2 =
1440-
stepThreadId s1 `elem` effectThrows (stepEffect s2)
1441-
&& stepEffect s1 /= mempty
1440+
stepThreadId s2 `elem` effectThrows (stepEffect s1)
1441+
&& stepEffect s2 /= mempty
14421442

14431443
currentStep :: Thread s a -> Step
14441444
currentStep Thread { threadId = tid,

0 commit comments

Comments
 (0)