Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editorial: Remove remaining references to scheduler.yield options #105

Merged
merged 1 commit into from
Aug 22, 2024
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
6 changes: 3 additions & 3 deletions spec/scheduling-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ the API into existing code that uses {{AbortSignal|AbortSignals}}.
milliseconds.
</dd>

<dt><code>result = scheduler . {{Scheduler/yield()|yield}}( |options| )</code></dt>
<dt><code>result = scheduler . {{Scheduler/yield()|yield}}()</code></dt>
<dd>
<p>Returns a promise that is fulfilled with <code>undefined</code> or rejected with the
{{AbortSignal}}'s [=AbortSignal/abort reason=], if the continuation is aborted.
Expand Down Expand Up @@ -142,8 +142,8 @@ The <dfn method for=Scheduler title="postTask(callback, options)">postTask(|call
method steps are to return the result of [=scheduling a postTask task=] for [=this=] given
|callback| and |options|.

The <dfn method for=Scheduler title="yield(options)">yield(|options|)</dfn> method steps are to
return the result of [=scheduling a yield continuation=] for [=this=] given |options|.
The <dfn method for=Scheduler title="yield()">yield()</dfn> method steps are to
return the result of [=scheduling a yield continuation=] for [=this=].


## Definitions ## {#sec-scheduling-tasks-definitions}
Expand Down