Github user rvesse commented on a diff in the pull request:
https://github.com/apache/jena/pull/366#discussion_r170616197
--- Diff: jena-arq/src/main/java/org/apache/jena/riot/SysRIOT.java ---
@@ -50,14 +51,20 @@
/**
* Context key for old style RDFWriter properties. The value of this
in a
* {@link Context} must be a {@code Map<String, Object>}. The entries
of the
- * map are used to set writer properties before the Jena legalacy
+ * map are used to set writer properties before the Jena legacy
* {@link RDFWriter} is called. Only has any effect on RDF/XML and
* RDF/XML-ABBREV.
*/
-
- /** Context key for old style RDFWriter properties */
public static final Symbol sysRdfWriterProperties =
Symbol.create(riotBase+"rdfWriter_properties") ;
-
+
+ /**
+ * Context key for old style RDFReader properties. The value of this
in a
+ * {@link Context} must be a {@code Map<String, Object>}. The entries
of the
+ * map are used to set reader properties before the Jena legalacy
--- End diff --
Typo - `legalacy`
---