summaryrefslogtreecommitdiff
path: root/Modules/syslogmodule.c
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-10-07 10:34:42 +0200
committerGitHub <noreply@github.com>2021-10-07 01:34:42 -0700
commitdd02a696e55b450413e765e698e653d781ca4205 (patch)
tree56559f73fe0771d9354abcd0131fa113f5975bc1 /Modules/syslogmodule.c
parent5baec4aea6821256f5d1785a6bd596fab069f1b6 (diff)
downloadcpython-git-dd02a696e55b450413e765e698e653d781ca4205.tar.gz
Fix typos in the Modules directory (GH-28761)
Diffstat (limited to 'Modules/syslogmodule.c')
-rw-r--r--Modules/syslogmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/syslogmodule.c b/Modules/syslogmodule.c
index cdc94a60a3..0f2fea15b3 100644
--- a/Modules/syslogmodule.c
+++ b/Modules/syslogmodule.c
@@ -183,7 +183,7 @@ syslog_syslog(PyObject * self, PyObject * args)
PyObject *openargs;
/* Continue even if PyTuple_New fails, because openlog(3) is optional.
- * So, we can still do loggin in the unlikely event things are so hosed
+ * So, we can still do logging in the unlikely event things are so hosed
* that we can't do this tuple.
*/
if ((openargs = PyTuple_New(0))) {