Everywhere: Fix typos - act III
Some checks are pending
CI / macOS, arm64, Sanitizer_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers_CI, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer_CI, Clang (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run

This commit is contained in:
Viktor Szépe 2025-04-09 17:02:30 +00:00 committed by Sam Atkins
commit 19f88f96dc
Notes: github-actions[bot] 2025-06-16 13:21:54 +00:00
12 changed files with 16 additions and 16 deletions

View file

@ -98,7 +98,7 @@ ThrowCompletionOr<Value> await(VM& vm, Value value)
promise->perform_then(on_fulfilled, on_rejected, {});
// FIXME: Since we don't support context suspension, we attempt to "wait" for the promise to resolve
// by syncronously running all queued promise jobs.
// by synchronously running all queued promise jobs.
if (auto* agent = vm.agent()) {
// Embedder case (i.e. LibWeb). Runs all promise jobs by performing a microtask checkpoint.
agent->spin_event_loop_until(GC::create_function(vm.heap(), [success] {