Skip to content

Commit 38b5ebe

Browse files
authored
[SE-317] Fix typo
1 parent 7930910 commit 38b5ebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposals/0317-async-let.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ It would be very confusing to have `async let` tasks automatically "not run" if
641641

642642
### Requiring an `await`on any execution path that waits for an `async let`
643643

644-
In initial versions of this proposal, we considered a rule to force an `async let` declaration to be awaited on each control-flow path that the execution of a function might take. This rule turned out to be too simplistic, because it isn't generally possible to annotate all of the control-flow edges that would result in waiting for a child task the complete. The most problematic case involves a control-flow edge due to a thrown exception, e.g.,
644+
In initial versions of this proposal, we considered a rule to force an `async let` declaration to be awaited on each control-flow path that the execution of a function might take. This rule turned out to be too simplistic, because it isn't generally possible to annotate all of the control-flow edges that would result in waiting for a child task to complete. The most problematic case involves a control-flow edge due to a thrown exception, e.g.,
645645

646646
```swift
647647
func runException() async {

0 commit comments

Comments
 (0)