From 604803560e41606be22c09430d6b23f99a7bb8d4 Mon Sep 17 00:00:00 2001 From: Francis McCabe Date: Fri, 31 May 2024 10:09:02 -0700 Subject: [PATCH] Update src/blog/jspi-newapi.md Co-authored-by: Thomas Steiner --- src/blog/jspi-newapi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blog/jspi-newapi.md b/src/blog/jspi-newapi.md index 9d9ecbba..9f21ff45 100644 --- a/src/blog/jspi-newapi.md +++ b/src/blog/jspi-newapi.md @@ -61,7 +61,7 @@ interface Suspending{ } ``` -Note that this API has an asymmetric feel to it: we have a function that takes a WebAssembly function and returns a new promising (sic) function; whereas to mark a suspending function we enclose it in a `Suspending` object. This reflects a deeper reality about what is happening under the hood. +Note that this API has an asymmetric feel to it: there's have a function that takes a WebAssembly function and returns a new promising (_sic_) function; whereas to mark a suspending function, you enclose it in a `Suspending` object. This reflects a deeper reality about what is happening under the hood. The suspending behavior of an import is intrinsically part of the *call* to the import: i.e., some function inside the instantiated module calls the import and suspends as a result.