[Bug 2409] Editorial: misbalanced paranteses 15.4.2.1 Examples

http://www.w3.org/Bugs/Public/show_bug.cgi?id=2409

           Summary: Editorial: misbalanced paranteses 15.4.2.1 Examples
           Product: XPath / XQuery / XSLT
           Version: Last Call drafts
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: minor
          Priority: P2
         Component: Functions and Operators
        AssignedTo: ashok.malhotra@oracle.com
        ReportedBy: frans.englich@telia.com
         QAContact: public-qt-comments@w3.org


To me very best of staring, I think two examples have misbalanced paranteses.

Section `15.4.2.1 Examples' have:

fn:avg((xs:float('INF')), xs:float('-INF')) returns NaN.

I think it should be:

fn:avg((xs:float('INF'), xs:float('-INF'))) returns NaN.


It also have:

fn:avg(($seq3, xs:float('NaN')) returns NaN.

which I think should be:

fn:avg(($seq3, xs:float('NaN'))) returns NaN.


Cheers,
Frans

Received on Friday, 21 October 2005 23:31:33 UTC