diff options
author | Michael K <michael-k@users.noreply.github.com> | 2023-03-02 15:26:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 15:26:49 (GMT) |
commit | 73250000ac7d6a5e41917e8bcea7234444cbde78 (patch) | |
tree | fa858e37aebe1630ebd2f81d32748bd42ecf7ceb /Objects | |
parent | ed55c69ebd74178115cd8b080f7f8e7588cd5fda (diff) | |
download | cpython-73250000ac7d6a5e41917e8bcea7234444cbde78.zip cpython-73250000ac7d6a5e41917e8bcea7234444cbde78.tar.gz cpython-73250000ac7d6a5e41917e8bcea7234444cbde78.tar.bz2 |
Fix typos in documentation and comments (GH-102374)
Found some duplicate `to`s in the documentation and some code comments and fixed them.
[Misc/NEWS.d/3.12.0a1.rst](https://github.com/python/cpython/blob/ed55c69ebd74178115cd8b080f7f8e7588cd5fda/Misc/NEWS.d/3.12.0a1.rst) also contains two duplicate `to`s, but I wasn't sure if it's ok to touch that file. Looks auto generated. I'm happy to amend the PR if requested. :)
Automerge-Triggered-By: GH:AlexWaygood
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index b3f1429..54f1974 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3822,11 +3822,11 @@ PyType_FromMetaclass(PyTypeObject *metaclass, PyObject *module, res->ht_qualname = Py_NewRef(ht_name); res->ht_name = ht_name; - ht_name = NULL; // Give our reference to to the type + ht_name = NULL; // Give our reference to the type type->tp_name = _ht_tpname; res->_ht_tpname = _ht_tpname; - _ht_tpname = NULL; // Give ownership to to the type + _ht_tpname = NULL; // Give ownership to the type /* Copy the sizes */ |