[Query-errata] error in example query in SPARQL recommendation

In section 11.4.11 sameTerm there is a syntax error in the last example.
The example in the recommendation reads

PREFIX  :      <http://example.org/WMterms#>
PREFIX  t:     <http://example.org/types#>

SELECT ?aLabel1 ?bLabel
WHERE { ?a  :label        ?aLabel .
        ?a  :weight       ?aWeight .
        ?a  :displacement ?aDisp .

        ?b  :label        ?bLabel .
        ?b  :weight       ?bWeight .
        ?b  :displacement ?bDisp .

        FILTER ( sameTerm(?aWeight, ?bWeight) && !sameTerm(?aDisp, ?bDisp) }

There is a closing parenthesis missing for the FILTER expression.

-- 
Sjoerd Mullender

Received on Thursday, 13 January 2011 11:43:38 UTC