Github user kinow commented on a diff in the pull request:
https://github.com/apache/jena/pull/463#discussion_r210857578
--- Diff:
jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/ServiceRouter.java
---
@@ -120,10 +120,12 @@ protected boolean allowQuads_RW(HttpAction action) {
return isEnabled(action, Operation.Quads_RW);
}
- // Test whether there is a configuration that allows this action
as the operation
- // given.
- // Ignores the operation in the action (set due to parsing - it
might be "quads"
- // which is the generic operation when just the dataset is
specificed.
+ /**
+ * Test whether there is a configuration that allows this action
as the operation
+ * given. Ignores the operation in the action which is set due to
parsing - it
+ * might be "quads" which is the generic operation when just the
dataset is
+ * specificed.
--- End diff --
s/specificed/specified
---