From b6b80c189ef68ea64d2207c4bcf626960618eb14 Mon Sep 17 00:00:00 2001 From: Victor Adossi Date: Fri, 20 Mar 2026 17:11:08 +0900 Subject: [PATCH] fix: typo in explanation of predicate fns --- design/mvp/CanonicalABI.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design/mvp/CanonicalABI.md b/design/mvp/CanonicalABI.md index 32fb81fd..4257e46a 100644 --- a/design/mvp/CanonicalABI.md +++ b/design/mvp/CanonicalABI.md @@ -1827,7 +1827,7 @@ their respective expansions. ### Type Predicates The `contains_borrow` and `contains_async_value` predicates return whether the -given type contains a `borrow` or `future/`stream`, respectively. +given type contains a `borrow` or `future`/`stream`, respectively. ```python def contains_borrow(t): return contains(t, lambda u: isinstance(u, BorrowType))