summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorSamuel <albanie@users.noreply.github.com>2022-09-20 12:17:40 (GMT)
committerGitHub <noreply@github.com>2022-09-20 12:17:40 (GMT)
commit8563966be4f171ccf615105ef9d3a5aa65a1de68 (patch)
tree2fd6b875664585b1a65fda60c67081138c89fdd7 /Objects
parent98e785d364773834188d97e603d73491143a4b34 (diff)
downloadcpython-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.c2
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*