From d6cd425bf593d8aabbb2f4e581f548168198c3bf Mon Sep 17 00:00:00 2001 From: Bar <815372+barbaramartina@users.noreply.github.com> Date: Wed, 29 Oct 2025 14:58:52 +0100 Subject: [PATCH 1/2] Update async function isolation documentation Small typo / unnecessary "the these" words combination. --- proposals/0461-async-function-isolation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/0461-async-function-isolation.md b/proposals/0461-async-function-isolation.md index 47633dda33..1d7d2de812 100644 --- a/proposals/0461-async-function-isolation.md +++ b/proposals/0461-async-function-isolation.md @@ -337,7 +337,7 @@ struct S: Sendable { ``` Only (implicitly or explicitly) `nonisolated` functions can be marked with -`@concurrent`; it is an error to use the these attributes with +`@concurrent`; it is an error to use these attributes with an isolation other than `nonisolated`, including global actors, isolated parameters, and `@isolated(any)`: From 82b7bdf8256caa42f3c94110858f30ebd65e9cee Mon Sep 17 00:00:00 2001 From: John McCall Date: Mon, 3 Nov 2025 13:34:28 -0800 Subject: [PATCH 2/2] Update proposals/0461-async-function-isolation.md Co-authored-by: Xiaodi Wu <13952+xwu@users.noreply.github.com> --- proposals/0461-async-function-isolation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/0461-async-function-isolation.md b/proposals/0461-async-function-isolation.md index 1d7d2de812..fef2459dc9 100644 --- a/proposals/0461-async-function-isolation.md +++ b/proposals/0461-async-function-isolation.md @@ -337,7 +337,7 @@ struct S: Sendable { ``` Only (implicitly or explicitly) `nonisolated` functions can be marked with -`@concurrent`; it is an error to use these attributes with +`@concurrent`; it is an error to use this attribute with an isolation other than `nonisolated`, including global actors, isolated parameters, and `@isolated(any)`: