diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2013-08-06 23:06:59 +0200 |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-08-06 23:06:59 +0200 |
| commit | 236a547b3e5094150e579eebb0152e98a4098dd3 (patch) | |
| tree | 5f5e68ddc605cca3567d152614f6ef3e53dbadea /Include | |
| parent | dbfc129cc8f2a3ea3e6a0b7e6492887212923bc6 (diff) | |
| download | cpython-git-236a547b3e5094150e579eebb0152e98a4098dd3.tar.gz | |
Issue #18665: fix typos. Patch by Vajrasky Kok.
Diffstat (limited to 'Include')
| -rw-r--r-- | Include/frameobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h index 10ba06fedb..18419bf181 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h @@ -36,7 +36,7 @@ typedef struct _frame { non-generator frames. See the save_exc_state and swap_exc_state functions in ceval.c for details of their use. */ PyObject *f_exc_type, *f_exc_value, *f_exc_traceback; - /* Borrowed referenced to a generator, or NULL */ + /* Borrowed reference to a generator, or NULL */ PyObject *f_gen; PyThreadState *f_tstate; |
