Few typos in WD

Hi,

I appreciate XQuery WD as it is very good start point in developing
query language for XML. During reading WD I found few typos:

In 2nd chapter in table summarizing XPath syntax:

Current  : // Denotes descendants of current node
Should be: // Denotes descendants of root node, or separator between
node and its descendants

(Q10):

Current  : avg(document("bib.xml")/book...)
Should be: avg(document("bib.xml")//book...)

(Q11):

Current  : LET $b := document("bib.xml")/book...
Should be: LET $b := document("bib.xml")//book...

(Q13):

Current  : FOR $b IN /book
Should be: FOR $b IN //book

(Q28):

Current  : FOR $p IN /kid...
Should be: FOR $p IN //kid...


I hope this helps to improve and clarify XQuery specs.

I have one unrelated question. Will XQuery have support for inserting,
deleting and updating XML fragments in repository of XML documents? 

Thanks.

	Jirka Kosek

-----------------------------------------------------------------
  Jirka Kosek  	                     
  e-mail: jirka@kosek.cz
  http://www.kosek.cz

Received on Tuesday, 27 February 2001 16:34:36 UTC