summaryrefslogtreecommitdiffstats
path: root/Include/cpython/dictobject.h
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-10-06 18:32:38 (GMT)
committerGitHub <noreply@github.com>2021-10-06 18:32:38 (GMT)
commit8e8f7522171ef82f2f5049940f815e00e38c6f42 (patch)
treecc4238b71699a4c9cb19578be4b4b21b4bd10626 /Include/cpython/dictobject.h
parentb24b47e64355224c1bf4e46ed7c4d9f7df4e6f09 (diff)
downloadcpython-8e8f7522171ef82f2f5049940f815e00e38c6f42.zip
cpython-8e8f7522171ef82f2f5049940f815e00e38c6f42.tar.gz
cpython-8e8f7522171ef82f2f5049940f815e00e38c6f42.tar.bz2
Fix typos in the Include directory (GH-28745)
Diffstat (limited to 'Include/cpython/dictobject.h')
-rw-r--r--Include/cpython/dictobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cpython/dictobject.h b/Include/cpython/dictobject.h
index ba11878..e97969b 100644
--- a/Include/cpython/dictobject.h
+++ b/Include/cpython/dictobject.h
@@ -23,7 +23,7 @@ typedef struct {
/* If ma_values is NULL, the table is "combined": keys and values
are stored in ma_keys.
- If ma_values is not NULL, the table is splitted:
+ If ma_values is not NULL, the table is split:
keys are stored in ma_keys and values are stored in ma_values */
PyDictValues *ma_values;
} PyDictObject;