diff options
author | Samuel <albanie@users.noreply.github.com> | 2022-09-20 12:17:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-20 12:17:40 (GMT) |
commit | 8563966be4f171ccf615105ef9d3a5aa65a1de68 (patch) | |
tree | 2fd6b875664585b1a65fda60c67081138c89fdd7 /Objects | |
parent | 98e785d364773834188d97e603d73491143a4b34 (diff) | |
download | cpython-8563966be4f171ccf615105ef9d3a5aa65a1de68.zip cpython-8563966be4f171ccf615105ef9d3a5aa65a1de68.tar.gz cpython-8563966be4f171ccf615105ef9d3a5aa65a1de68.tar.bz2 |
Fix minor comment typo in dictobject.c (GH-96960)
Fix a minor comment typo in the Objects/dictobject.c file.
Automerge-Triggered-By: GH:methane
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index c603e6f..fecdfa8 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -4719,7 +4719,7 @@ static PySequenceMethods dictkeys_as_sequence = { (objobjproc)dictkeys_contains, /* sq_contains */ }; -// Create an set object from dictviews object. +// Create a set object from dictviews object. // Returns a new reference. // This utility function is used by set operations. static PyObject* |