From 54dc65eb50029d507746e077ca4bb35a3701b26f Mon Sep 17 00:00:00 2001 From: Ole Begemann Date: Tue, 6 May 2025 14:48:26 +0200 Subject: [PATCH] [SE-0461] Fix typo --- 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 f8712cde7d..1514230100 100644 --- a/proposals/0461-async-function-isolation.md +++ b/proposals/0461-async-function-isolation.md @@ -289,7 +289,7 @@ actor MyActor { In the above code, the call to `x.performAsync()` continues running on the `self` actor instance. The code does not produce a data-race safety error, because the `NotSendable` instance `x` does not leave the actor. In other -words, the arguments are not send across an isolation boundary when calling +words, the arguments are not sent across an isolation boundary when calling `performAsync` by default. This behavior is accomplished by implicitly passing an optional actor parameter