From ca4a8c697e717388fac1f2501ae50b1f52f05e1e Mon Sep 17 00:00:00 2001 From: Marcos Caceres Date: Mon, 15 May 2017 17:09:53 +1000 Subject: [PATCH] editorial: destructure tuple (closes #498) --- index.html | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index f9bb0dda..48a2daec 100644 --- a/index.html +++ b/index.html @@ -678,15 +678,20 @@

  • Return acceptPromise and perform the remaining steps in parallel.
  • -
  • For each paymentMethod in +
  • For each paymentMethod tuple in request.[[\serializedMethodData]]:
      +
    1. Let identifiers be the first element in the + paymentMethod tuple. +
    2. +
    3. Let data be the second element in + paymentMethod tuple. +
    4. Determine which payment handlers support any of the - payment method identifiers given by the first element of - the paymentMethod 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. + payment method identifiers given identifiers. + For each resulting payment handler, if payment method specific + capabilities supplied by the payment handler match those provided + by data, the payment handler matches.