From: Samuel Date: Tue, 20 Sep 2022 12:17:40 +0000 (+0100) Subject: Fix minor comment typo in dictobject.c (GH-96960) X-Git-Tag: v3.12.0a1~378 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8563966be4f171ccf615105ef9d3a5aa65a1de68;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index c603e6f1f874..fecdfa863701 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*