- From: Nevada J Sanchez <nevsan@MIT.EDU>
- Date: Thu, 07 Aug 2008 08:19:33 -0400
- To: www-rdf-comments@w3.org
Incorrect call to Element Event accessor "string-value" In section 7.2.19, the Production grammar, the following is found in Production parseTypeCollectionPropertyElt: // For each event n in s and the corresponding element event f in l, the following statement is added to the graph: n.string-value <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> f.string-value .. // The last statement is incorrect because f is an Element Event, which contains no accessor called 'string-value.' Regardless, the correct call should be: f.subject.string-value, resulting in the following triple being added to the graph: // n.string-value <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> f.subject.string-value . //
Received on Friday, 8 August 2008 09:51:11 UTC