summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Stein <wstein@gmail.com>2022-10-31 09:31:57 -0700
committerGitHub <noreply@github.com>2022-10-31 09:31:57 -0700
commit0b2c99970cc465dfc2909a1c311602e3bcd7a4c3 (patch)
tree20ec03cdbbbdaa42a9ac6d838a89b34e8838ce69
parent8ab8e40d15a4d9f28ced76d28232f9e791f161d3 (diff)
downloadbinaryen-0b2c99970cc465dfc2909a1c311602e3bcd7a4c3.tar.gz
binaryen-0b2c99970cc465dfc2909a1c311602e3bcd7a4c3.tar.bz2
binaryen-0b2c99970cc465dfc2909a1c311602e3bcd7a4c3.zip
Fix comment in Asyncify.cpp (#5196)
-rw-r--r--src/passes/Asyncify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Asyncify.cpp b/src/passes/Asyncify.cpp
index 94ad5859e..3cc57158a 100644
--- a/src/passes/Asyncify.cpp
+++ b/src/passes/Asyncify.cpp
@@ -20,7 +20,7 @@
// an async manner, for example, you can do a blocking wait, and that will
// be turned into code that unwinds the stack at the "blocking" operation,
// then is able to rewind it back up when the actual async operation
-// comples, the so the code appears to have been running synchronously
+// completes, so the code appears to have been running synchronously
// all the while. Use cases for this include coroutines, python generators,
// etc.
//