From 33afef7ad21b0ce12d5b9fd5b3b6534151434bad Mon Sep 17 00:00:00 2001 From: Jinho Bang Date: Tue, 21 Jun 2016 12:37:20 -0400 Subject: [PATCH] Fix two minor typos. There is no 'string' type in WebIDL. Instead we should use DOMString. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index cca231dc..9c4f72dd 100644 --- a/index.html +++ b/index.html @@ -917,8 +917,8 @@

PaymentAddress interface

PaymentShippingOption dictionary

         dictionary PaymentShippingOption {
-          required string id;
-          required string label;
+          required DOMString id;
+          required DOMString label;
           required PaymentCurrencyAmount amount;
           boolean selected = false;
         };