summaryrefslogtreecommitdiffstats
path: root/Include/pystate.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/pystate.h')
-rw-r--r--Include/pystate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index 0821238..9381585 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -125,8 +125,8 @@ typedef struct _ts PyThreadState;
#else
typedef struct _err_stackitem {
- /* This struct represents an entry on the exception stack, which is a
- * per-coroutine state. (Coroutine in the computer science sense,
+ /* This struct represents an entry on the exception stack, which is a
+ * per-coroutine state. (Coroutine in the computer science sense,
* including the thread and generators).
* This ensures that the exception state is not impacted by "yields"
* from an except handler.