Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion design/mvp/Async.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ no prohibition against non-`async`-exported functions calling imported `async`
functions. This does mean that non-`async` functions may end up blocking
their caller, but (1) any loss in performance is the callee's "fault", (2) the
caller can still lower `async` if they want to (overriding the default hint),
(3) any *transitive* caller an lower `async` to avoid blocking.
(3) any *transitive* caller can lower `async` to avoid blocking.

For example, given this interface:
```wit
Expand Down