This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 29177 - [XSLT30] Missing commas in example JSON
Summary: [XSLT30] Missing commas in example JSON
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: XSLT 3.0 (show other bugs)
Version: Last Call drafts
Hardware: PC All
: P2 minor
Target Milestone: ---
Assignee: Michael Kay
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-10-05 06:37 UTC by Joe Wicentowski
Modified: 2015-10-29 12:42 UTC (History)
1 user (show)

See Also:


Attachments

Description Joe Wicentowski 2015-10-05 06:37:29 UTC
In http://www.w3.org/TR/xslt-30/#json-to-xml-mapping, the example JSON (specifically, http://www.w3.org/TR/xslt-30/#d7e61203) is missing trailing commas in lines 4-5 (carats are mine for emphasis):

  "uptodate": true
                  ^
  "author"  : null
                  ^
Should be:

  "uptodate": true,
                  ^
  "author"  : null,
                  ^
Comment 1 Michael Kay 2015-10-07 11:54:47 UTC
Many thanks for pointing out this error. I have fixed it editorially (that is, without adding to the change log). The same example appears with the same error in the XPath 3.1 functions and operators draft specification, and I have fixed it there also.
Comment 2 Joe Wicentowski 2015-10-07 14:55:25 UTC
Thank you so much!