test suite: syntax errors in construct/result-reif.ttl

DAWGers,

Arjohn and I came across a few syntax errors in the
construct/result-reif.ttl Turtle file.

Specifically, the construction:

  [ rdf:subject _:gff ;
    rdf:predicate rdf:type ;
    rdf:object foaf:Person ] .

is not valid Turtle (at least not according to the BNF at
http://www.dajobe.org/2004/01/turtle/), blank nodes can not
be denoted in this fashion. I have updated the file, it now reads:

  [] rdf:subject _:gff ;
     rdf:predicate rdf:type ;
     rdf:object foaf:Person .

Which is correct Turtle.

I am not sure if the above construction was ever allowed in Turtle or if
this is another case of N3-confusion. Just thought I'd point it out.

cheers,

Jeen

Received on Friday, 6 July 2007 13:51:57 UTC