summaryrefslogtreecommitdiffstats
path: root/Modules/faulthandler.c
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-14 01:53:26 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-14 01:53:26 (GMT)
commit3c2a178af2b4908fbf0a59582e52fe40798eb7ea (patch)
tree640717753279b86036a8a89112b36568bead4c5c /Modules/faulthandler.c
parentb05d69808e79f95de85df8ea9683af2e97813655 (diff)
parentfc06999e0b7cd7460565f475e568a86915ec8672 (diff)
downloadcpython-3c2a178af2b4908fbf0a59582e52fe40798eb7ea.zip
cpython-3c2a178af2b4908fbf0a59582e52fe40798eb7ea.tar.gz
cpython-3c2a178af2b4908fbf0a59582e52fe40798eb7ea.tar.bz2
Merge: #19970: Fix some comment typos.
Diffstat (limited to 'Modules/faulthandler.c')
-rw-r--r--Modules/faulthandler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c
index 27b1d54..fff960f 100644
--- a/Modules/faulthandler.c
+++ b/Modules/faulthandler.c
@@ -303,7 +303,7 @@ faulthandler_fatal_error(int signum)
return;
}
#endif
- /* call the previous signal handler: it is called immediatly if we use
+ /* call the previous signal handler: it is called immediately if we use
sigaction() thanks to SA_NODEFER flag, otherwise it is deferred */
raise(signum);
}