Skip to content

Commit

Permalink
editorial: destructure tuple (closes #498)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres committed May 15, 2017
1 parent c2d0880 commit ab9306d
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -678,15 +678,20 @@ <h2>
<li>Return <var>acceptPromise</var> and perform the remaining steps
<a>in parallel</a>.
</li>
<li>For each <var>paymentMethod</var> in
<li>For each <var>paymentMethod</var> tuple in
<var>request</var>.<a>[[\serializedMethodData]]</a>:
<ol>
<li>Let <var>identifiers</var> be the first element in the
<var>paymentMethod</var> tuple.
</li>
<li>Let <var>data</var> be the second element in
<var>paymentMethod</var> tuple.
</li>
<li>Determine which <a>payment handlers</a> support any of the
<a>payment method identifiers</a> given by the first element of
the <var>paymentMethod</var> tuple. For each resulting payment
handler, if payment method specific capabilities supplied by the
payment handler match those provided by the second element of the
tuple, the payment handler matches.
<a>payment method identifiers</a> given <var>identifiers</var>.
For each resulting payment handler, if payment method specific
capabilities supplied by the payment handler match those provided
by <var>data</var>, the payment handler matches.
</li>
</ol>
</li>
Expand Down

0 comments on commit ab9306d

Please sign in to comment.