summaryrefslogtreecommitdiff
path: root/Modules/syslogmodule.c
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-10-07 01:55:18 -0700
committerGitHub <noreply@github.com>2021-10-07 01:55:18 -0700
commit5afc5bb45d614ea4a512e257b6b60e4f98185043 (patch)
treec4723c33d978f61a05012ee3ed476cb24319e1e8 /Modules/syslogmodule.c
parent35d4857375b6ef8f1243db4da9c2cba0bee63ad6 (diff)
downloadcpython-git-5afc5bb45d614ea4a512e257b6b60e4f98185043.tar.gz
[3.10] Fix typos in the Modules directory (GH-28761) (GH-28781)
(cherry picked from commit dd02a696e55b450413e765e698e653d781ca4205) Co-authored-by: Christian Clauss <cclauss@me.com> Automerge-Triggered-By: GH:gpshead
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))) {