diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-06 18:32:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 18:32:38 (GMT) |
commit | 8e8f7522171ef82f2f5049940f815e00e38c6f42 (patch) | |
tree | cc4238b71699a4c9cb19578be4b4b21b4bd10626 /Include/cpython/dictobject.h | |
parent | b24b47e64355224c1bf4e46ed7c4d9f7df4e6f09 (diff) | |
download | cpython-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.h | 2 |
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; |