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 1229 - Example in 15.1.10 is wrong
Summary: Example in 15.1.10 is wrong
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: Functions and Operators 1.0 (show other bugs)
Version: Last Call drafts
Hardware: PC Linux
: P2 normal
Target Milestone: ---
Assignee: Ashok Malhotra
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-04-08 11:55 UTC by Norman Walsh
Modified: 2005-07-21 18:50 UTC (History)
0 users

See Also:


Attachments

Description Norman Walsh 2005-04-08 11:55:51 UTC
Assume $seq = ($item1, $item2, $item3, $item4, ...)

    * fn:subsequence($seq, 4) returns ($item4, ...)
    * fn:subsequence($seq, 3, 2) returns ($item4, $item5)

The second bullet should be "...returns ($item3, $item4)", no?