diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-07 10:34:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-07 01:34:42 -0700 |
commit | dd02a696e55b450413e765e698e653d781ca4205 (patch) | |
tree | 56559f73fe0771d9354abcd0131fa113f5975bc1 /Modules/syslogmodule.c | |
parent | 5baec4aea6821256f5d1785a6bd596fab069f1b6 (diff) | |
download | cpython-git-dd02a696e55b450413e765e698e653d781ca4205.tar.gz |
Fix typos in the Modules directory (GH-28761)
Diffstat (limited to 'Modules/syslogmodule.c')
-rw-r--r-- | Modules/syslogmodule.c | 2 |
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))) { |