https://github.com/python/cpython/commit/61e37dd4f5a1c8c16373f072904c81fc4eff2ef3 commit: 61e37dd4f5a1c8c16373f072904c81fc4eff2ef3 branch: 3.12 author: Terry Jan Reedy <[email protected]> committer: terryjreedy <[email protected]> date: 2024-06-20T03:59:31Z summary:
[3.12] Fix typos in comments (GH-120481) (#120775) Only 1 applicable change backported to 3.12. (cherry picked from commit 656a1c8) Co-authored-by: Xie Yanbo [email protected] files: M Include/internal/pycore_frame.h diff --git a/Include/internal/pycore_frame.h b/Include/internal/pycore_frame.h index bfe4a759bac078..4d355b2bc8d6fd 100644 --- a/Include/internal/pycore_frame.h +++ b/Include/internal/pycore_frame.h @@ -200,7 +200,7 @@ _PyFrame_MakeAndSetFrameObject(_PyInterpreterFrame *frame); /* Gets the PyFrameObject for this frame, lazily * creating it if necessary. - * Returns a borrowed referennce */ + * Returns a borrowed reference */ static inline PyFrameObject * _PyFrame_GetFrameObject(_PyInterpreterFrame *frame) { _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
