diff options
author | Nikita Baksalyar <nikita.baksalyar@gmail.com> | 2020-08-10 19:28:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 11:28:57 -0700 |
commit | e7d9111ad020d64e6094ebfb6c325d86ffbbdb5c (patch) | |
tree | a43000f98c6f75f9bef8b89b30f7d7d7a70b9673 | |
parent | a355a7ea6151d4bd6dbb7895317fba0f3e8e422f (diff) | |
download | binaryen-e7d9111ad020d64e6094ebfb6c325d86ffbbdb5c.tar.gz binaryen-e7d9111ad020d64e6094ebfb6c325d86ffbbdb5c.tar.bz2 binaryen-e7d9111ad020d64e6094ebfb6c325d86ffbbdb5c.zip |
Fix typo in Asyncify comment (#3031)
-rw-r--r-- | src/passes/Asyncify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Asyncify.cpp b/src/passes/Asyncify.cpp index e5305317b..2aca16942 100644 --- a/src/passes/Asyncify.cpp +++ b/src/passes/Asyncify.cpp @@ -192,7 +192,7 @@ // unwinding/rewinding finishes, and not at the specific spot where the // stack end was exceeded. // -// By default this pass is very carefuly: it assumes that any import and +// By default this pass is very careful: it assumes that any import and // any indirect call may start an unwind/rewind operation. If you know more // specific information you can inform asyncify about that, which can reduce // a great deal of overhead, as it can instrument less code. The relevant |