Skip to content

Commit

Permalink
Minor documentation updates
Browse files Browse the repository at this point in the history
As can be seen on this javadoc page:
https://commons.apache.org/proper/commons-rdf/apidocs/org/apache/commons/rdf/api/package-summary.html,
some of the documentation and links to the W3C specification are formatted inconsistently.

This makes some changes to the documentation links so that they are consistent in how
they refer to the W3C specification.
  • Loading branch information
acoburn committed May 9, 2017
1 parent ef7f444 commit 06b334c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions api/src/main/java/org/apache/commons/rdf/api/Dataset.java
Expand Up @@ -23,9 +23,9 @@
import java.util.stream.Stream;

/**
* An <a href="http://www.w3.org/TR/rdf11-concepts/#section-rdf-dataset"> RDF
* 1.1 dataset</a>, a set of RDF quads, as defined by
* <a href="http://www.w3.org/TR/rdf11-concepts/" >RDF-1.1 Concepts and Abstract
* An <a href="http://www.w3.org/TR/rdf11-concepts/#dfn-rdf-dataset">RDF
* 1.1 Dataset</a>, a set of RDF quads, as defined by
* <a href="http://www.w3.org/TR/rdf11-concepts/#section-rdf-dataset">RDF-1.1 Concepts and Abstract
* Syntax</a>, a W3C Recommendation published on 25 February 2014.
*
* @since 0.3.0-incubating
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/org/apache/commons/rdf/api/IRI.java
Expand Up @@ -19,7 +19,7 @@

/**
* An <a href= "http://www.w3.org/TR/rdf11-concepts/#dfn-iri" >RDF-1.1 IRI</a>,
* as defined by <a href= "http://www.w3.org/TR/rdf11-concepts/" >RDF-1.1
* as defined by <a href= "http://www.w3.org/TR/rdf11-concepts/#section-IRIs" >RDF-1.1
* Concepts and Abstract Syntax</a>, a W3C Recommendation published on 25
* February 2014.
*
Expand Down
5 changes: 3 additions & 2 deletions api/src/main/java/org/apache/commons/rdf/api/Literal.java
Expand Up @@ -23,10 +23,11 @@
import java.util.Optional;

/**
* A RDF-1.1 Literal, as defined by
* An <a href= "https://www.w3.org/TR/rdf11-concepts/#dfn-literal"
* >RDF-1.1 Literal</a>, as defined by
* <a href= "http://www.w3.org/TR/rdf11-concepts/#section-Graph-Literal"
* >RDF-1.1 Concepts and Abstract Syntax</a>, a W3C Recommendation published on
* 25 February 2014
* 25 February 2014.
*
* @see RDF#createLiteral(String)
* @see RDF#createLiteral(String, IRI)
Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/org/apache/commons/rdf/api/Triple.java
Expand Up @@ -22,7 +22,7 @@
/**
* An <a href= "http://www.w3.org/TR/rdf11-concepts/#dfn-rdf-triple" >RDF-1.1
* Triple</a>, as defined by
* <a href= "http://www.w3.org/TR/rdf11-concepts/" >RDF-1.1 Concepts and
* <a href= "http://www.w3.org/TR/rdf11-concepts/#section-triples" >RDF-1.1 Concepts and
* Abstract Syntax</a>, a W3C Recommendation published on 25 February 2014.
* <p>
* A <code>Triple</code> object in Commons RDF is considered
Expand Down

0 comments on commit 06b334c

Please sign in to comment.