summaryrefslogtreecommitdiff
path: root/Modules/_tkinter.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/_tkinter.c
parent5baec4aea6821256f5d1785a6bd596fab069f1b6 (diff)
downloadcpython-git-dd02a696e55b450413e765e698e653d781ca4205.tar.gz
Fix typos in the Modules directory (GH-28761)
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index 7be9b8c038..aabf20b8d9 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -797,7 +797,7 @@ PyTclObject_str(PyTclObject *self)
Py_INCREF(self->string);
return self->string;
}
- /* XXX Could chache result if it is non-ASCII. */
+ /* XXX Could cache result if it is non-ASCII. */
return unicodeFromTclObj(self->value);
}