summaryrefslogtreecommitdiff
path: root/rts/Capability.c
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2015-12-14 10:43:23 +0100
committerGabor Greif <ggreif@gmail.com>2015-12-14 10:57:05 +0100
commit65920c9e6a17094c3a0abbdbed5ab01f8524850e (patch)
tree88374635449b36a150ccdd54f7bd7628c7563fea /rts/Capability.c
parentbaed2f5a26a5d4c4e951bd8f003f71fca3ef45e8 (diff)
downloadhaskell-65920c9e6a17094c3a0abbdbed5ab01f8524850e.tar.gz
Some more typos in comments
Diffstat (limited to 'rts/Capability.c')
-rw-r--r--rts/Capability.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Capability.c b/rts/Capability.c
index b0b7f307b5..45ee2c8e30 100644
--- a/rts/Capability.c
+++ b/rts/Capability.c
@@ -859,7 +859,7 @@ yieldCapability (Capability** pCap, Task *task, rtsBool gcAllowed)
//
// - A bound thread can only be migrated by the holder of the
// Capability on which the bound thread currently lives. So, if we
-// hold Capabilty C, and task->cap == C, then task cannot be
+// hold Capability C, and task->cap == C, then task cannot be
// migrated under our feet.
// Note [migrated bound threads 2]