Skip to content

Commit e3317f2

Browse files
committed
Fix typo in CABI; remove dangling 'f' from 'BLOCKED'
1 parent 4841186 commit e3317f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

design/mvp/CanonicalABI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3613,7 +3613,7 @@ This state is either returned by `subtask.cancel`, if the subtask resolved
36133613
without blocking, or, if `subtask.cancel` returns `BLOCKED`, then as part of
36143614
the event payload of a future `SUBTASK` event.
36153615
```python
3616-
BLOCKED = 0xffff_fffff
3616+
BLOCKED = 0xffff_ffff
36173617

36183618
async def canon_subtask_cancel(sync, task, i):
36193619
trap_if(not task.inst.may_leave)

design/mvp/canonical-abi/definitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2117,7 +2117,7 @@ async def canon_waitable_join(task, wi, si):
21172117

21182118
### 🔀 `canon subtask.cancel`
21192119

2120-
BLOCKED = 0xffff_fffff
2120+
BLOCKED = 0xffff_ffff
21212121

21222122
async def canon_subtask_cancel(sync, task, i):
21232123
trap_if(not task.inst.may_leave)

0 commit comments

Comments
 (0)