diff options
author | Niklas Hambüchen <mail@nh2.me> | 2017-09-19 15:12:11 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-09-19 15:58:46 -0400 |
commit | b7f2d1256949c016724577168106002c4b12169c (patch) | |
tree | b5fde151f15fff97a1191594d0f151e33861df60 /rts/Schedule.h | |
parent | 11c478b50e2f56174889fadef3a4e51ed95907d3 (diff) | |
download | haskell-b7f2d1256949c016724577168106002c4b12169c.tar.gz |
rts: Fix typo in comment
Reviewers: bgamari, austin, erikd, simonmar
Reviewed By: bgamari
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D3958
Diffstat (limited to 'rts/Schedule.h')
-rw-r--r-- | rts/Schedule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Schedule.h b/rts/Schedule.h index 23a1a5b770..49e094bb89 100644 --- a/rts/Schedule.h +++ b/rts/Schedule.h @@ -65,7 +65,7 @@ extern volatile StgWord sched_state; * The timer interrupt transitions ACTIVITY_YES into * ACTIVITY_MAYBE_NO, waits for RtsFlags.GcFlags.idleGCDelayTime, * and then: - * - if idle GC is no, set ACTIVITY_INACTIVE and wakeUpRts() + * - if idle GC is on, set ACTIVITY_INACTIVE and wakeUpRts() * - if idle GC is off, set ACTIVITY_DONE_GC and stopTimer() * * If the scheduler finds ACTIVITY_INACTIVE, then it sets |