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
This commit is contained in:
Samuel 2022-09-20 13:17:40 +01:00 committed by GitHub
parent 98e785d364
commit 8563966be4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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*