summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Z. Yang <ezyang@mit.edu>2013-10-10 17:31:19 -0700
committerEdward Z. Yang <ezyang@mit.edu>2013-10-10 17:31:19 -0700
commit996206b15aa1d4e6d203934484b9076c4c8e1032 (patch)
tree73076883401ae3044836962981ed941221153be2
parent997a48858f354a71ee550d912b23cc7fd2665ce0 (diff)
downloadhaskell-996206b15aa1d4e6d203934484b9076c4c8e1032.tar.gz
Typofix.
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
-rw-r--r--rts/Threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Threads.c b/rts/Threads.c
index 742119df1f..0971288505 100644
--- a/rts/Threads.c
+++ b/rts/Threads.c
@@ -502,7 +502,7 @@ threadStackOverflow (Capability *cap, StgTSO *tso)
if (tso->tot_stack_size >= RtsFlags.GcFlags.maxStkSize
&& !(tso->flags & TSO_BLOCKEX)) {
// NB. never raise a StackOverflow exception if the thread is
- // inside Control.Exceptino.block. It is impractical to protect
+ // inside Control.Exception.mask. It is impractical to protect
// against stack overflow exceptions, since virtually anything
// can raise one (even 'catch'), so this is the only sensible
// thing to do here. See bug #767.