summaryrefslogtreecommitdiffstats
path: root/Modules/faulthandler.c
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-12-14 01:52:19 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-12-14 01:52:19 (GMT)
commitfc06999e0b7cd7460565f475e568a86915ec8672 (patch)
tree4081cf544d4b3fe53f7b3f97cfbef07378ad87ad /Modules/faulthandler.c
parent98620d87f2e011cbdea384c1822a3325b491d048 (diff)
downloadcpython-fc06999e0b7cd7460565f475e568a86915ec8672.zip
cpython-fc06999e0b7cd7460565f475e568a86915ec8672.tar.gz
cpython-fc06999e0b7cd7460565f475e568a86915ec8672.tar.bz2
#19970: Fix some comment typos.
Report and patch by Vajrasky Kok.
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 c86a27f..680f630 100644
--- a/Modules/faulthandler.c
+++ b/Modules/faulthandler.c
@@ -301,7 +301,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);
}