From 3066910f4a8ccfeade7e3cac7448b886be33244d Mon Sep 17 00:00:00 2001 From: Simon Pieters Date: Fri, 10 Mar 2017 08:18:16 +0100 Subject: [PATCH] Remove trailing comma from IDL enums 28d01b4fdca2da26efe622a0082f8f3956815328 introduced trailing commas in IDL enums. From what I can tell from https://heycam.github.io/webidl/#idl-enums that is not allowed. --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 4277a138..97c7406a 100644 --- a/index.html +++ b/index.html @@ -1340,7 +1340,7 @@

enum PaymentShippingType { "shipping", "delivery", - "pickup", + "pickup" };
@@ -1677,7 +1677,7 @@

enum PaymentComplete { "fail", "success", - "unknown", + "unknown" };