Skip to content

Commit

Permalink
Remove trailing comma from IDL enums (#453)
Browse files Browse the repository at this point in the history
28d01b4 introduced trailing commas
in IDL enums. From what I can tell from
https://heycam.github.io/webidl/#idl-enums that is not allowed.
  • Loading branch information
zcorpan authored and Marcos Cáceres committed Mar 10, 2017
1 parent 361e720 commit 81c4e0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,7 @@ <h2>
enum PaymentShippingType {
"shipping",
"delivery",
"pickup",
"pickup"
};
</pre>
<dl>
Expand Down Expand Up @@ -1677,7 +1677,7 @@ <h2>
enum PaymentComplete {
"fail",
"success",
"unknown",
"unknown"
};
</pre>
<dl>
Expand Down

0 comments on commit 81c4e0a

Please sign in to comment.