Skip to content

Commit

Permalink
clients.getAll -> clients.matchAll. Fixes #610
Browse files Browse the repository at this point in the history
  • Loading branch information
jakearchibald committed Feb 4, 2015
1 parent 9c15df9 commit ee62cfc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/service_worker/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ <h1><code>Clients</code></h1>
<spec-idl>[Exposed=ServiceWorker]
interface <dfn id="clients-interface" title="Clients">Clients</dfn> {
// The objects returned will be new instances every time
<a href="https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects">Promise</a>&lt;sequence&lt;<a href="#client-interface">Client</a>&gt;?&gt; <a href="#clients-getall-method">getAll</a>(optional <a href="#serviceworker-client-query-options-dictionary">ClientQueryOptions</a> <var>options</var>);
<a href="https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects">Promise</a>&lt;sequence&lt;<a href="#client-interface">Client</a>&gt;?&gt; <a href="#clients-matchall-method">matchAll</a>(optional <a href="#serviceworker-client-query-options-dictionary">ClientQueryOptions</a> <var>options</var>);
<a href="https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects">Promise</a>&lt;<a href="#window-client-interface">WindowClient</a>&gt; <a href="#clients-openwindow-method">openWindow</a>(<a href="http://heycam.github.io/webidl/#idl-USVString">USVString</a> <var>url</var>);
<a href="https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects">Promise</a>&lt;void&gt; <a href="#clients-claim-method">claim</a>();
};
Expand All @@ -919,8 +919,8 @@ <h1><code>Clients</code></h1>
</spec-idl>
<p>The <code><a href="#clients-interface">Clients</a></code> interface represents a container for a list of <code><a href="#client-interface">Client</a></code> objects.</p>
<spec-section id="clients-getall">
<h1><code>getAll(<var>options</var>)</code></h1>
<p>The <dfn id="clients-getall-method"><code>getAll(<var>options</var>)</code></dfn> method must run these steps or their <a href="#dfn-processing-equivalence">equivalent</a>:</p>
<h1><code>matchAll(<var>options</var>)</code></h1>
<p>The <dfn id="clients-matchall-method"><code>matchAll(<var>options</var>)</code></dfn> method must run these steps or their <a href="#dfn-processing-equivalence">equivalent</a>:</p>
<spec-algorithm>
<ol>
<li>Let <var>promise</var> be a new <a href="https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects">promise</a>.</li>
Expand Down

2 comments on commit ee62cfc

@wanderview
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you need to push this to the ghpages branch? I don't see it updating in the linkable draft spec.

@jakearchibald
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for missing this, looks like @jungkees did it in the meantime \o/

Please sign in to comment.