Skip to content

Commit c0c5f6e

Browse files
authored
Correct JSON commas (#468)
In commit 1d54517, some JSON objects were moved around. The missing trailing comma typical to JSON was not added back for the non-trailing case. This caused a parsing error. This commit corrects the commas from that previous commit. It also removes a trailing comma that was apparently previously allowed. This matches the style of the rest of the JSON. Although, perhaps we should opt into trailing commas to make life easier.
1 parent 8b5abca commit c0c5f6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
{ name: "Chris Lilley", url: "https://svgees.us", company: "W3C", companyURL: "https://www.w3.org", w3cid: 1438 },
3232
{ name: "Chris Needham", url: "https://chrisneedham.com/about" },
3333
{ name: "Leonard Rosenthol", company: "Adobe Inc.", companyURL: "https://www.adobe.com", w3cid: 42485 },
34-
{ name: "Chris Arley Seeger", company: "NBCUniversal, LLC a subsidiary of Comcast Corporation", companyURL: "https://www.xfinity.com", w3cid: 125844 }
35-
{ name: "Simon Thompson", company: "British Broadcasting Corporation", companyURL: "https://www.bbc.co.uk" },
34+
{ name: "Chris Arley Seeger", company: "NBCUniversal, LLC a subsidiary of Comcast Corporation", companyURL: "https://www.xfinity.com", w3cid: 125844 },
35+
{ name: "Simon Thompson", company: "British Broadcasting Corporation", companyURL: "https://www.bbc.co.uk" }
3636
],
3737
formerEditors: [
3838
{ name: "Thomas Boutell" },
3939
{ name: "Adam M. Costello" },
4040
{ name: "David Duce" },
4141
{ name: "Tom Lane" },
42-
{ name: "Glenn Randers-Pehrson" },
42+
{ name: "Glenn Randers-Pehrson" }
4343
],
4444
authors: [
4545
{ name: "Mark Adler", url: "https://en.wikipedia.org/wiki/Mark_Adler" },

0 commit comments

Comments
 (0)