This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-rdf.git
The following commit(s) were added to refs/heads/master by this push: new 79abe140 Normalize spelling 79abe140 is described below commit 79abe1407ad9fbd15dd2998af8961866971bbed0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jan 27 10:23:06 2025 -0500 Normalize spelling --- .../src/main/java/org/apache/commons/rdf/api/QuadLike.java | 2 +- commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDFTerm.java | 4 ++-- .../src/main/java/org/apache/commons/rdf/api/TripleLike.java | 2 +- .../main/java/org/apache/commons/rdf/jsonldjava/JsonLdGraphLike.java | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/QuadLike.java b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/QuadLike.java index 2f2029bf..25e7a7dc 100644 --- a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/QuadLike.java +++ b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/QuadLike.java @@ -30,7 +30,7 @@ import java.util.Optional; * also be used for <em>generalized quads</em> (e.g. a {@link BlankNode} as * predicate). * <p> - * Implementations should specialise which specific {@link RDFTerm} types they + * Implementations should specialize which specific {@link RDFTerm} types they * return by overriding {@link #getSubject()}, {@link #getPredicate()}, * {@link #getObject()} and {@link #getGraphName()}. * diff --git a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDFTerm.java b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDFTerm.java index 4efda1e2..870025be 100644 --- a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDFTerm.java +++ b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDFTerm.java @@ -93,10 +93,10 @@ public interface RDFTerm { int hashCode(); /** - * Return the term serialised as specified by the RDF-1.1 N-Triples + * Return the term serialized as specified by the RDF-1.1 N-Triples * Canonical form. * - * @return The term serialised as RDF-1.1 N-Triples. + * @return The term serialized as RDF-1.1 N-Triples. * @see <a href="http://www.w3.org/TR/n-triples/#canonical-ntriples"> * RDF-1.1 N-Triples Canonical form</a> */ diff --git a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/TripleLike.java b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/TripleLike.java index c2c2d6cf..15d7a685 100644 --- a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/TripleLike.java +++ b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/TripleLike.java @@ -28,7 +28,7 @@ package org.apache.commons.rdf.api; * <em>immutable</em> or <em>thread-safe</em>. This interfaced can also be used * for <em>generalized triples</em> (e.g. a {@link BlankNode} as predicate). * <p> - * Implementations should specialise which specific {@link RDFTerm} types they + * Implementations should specialize which specific {@link RDFTerm} types they * return by overriding {@link #getSubject()}, {@link #getPredicate()} and * {@link #getObject()}. * diff --git a/commons-rdf-jsonld-java/src/main/java/org/apache/commons/rdf/jsonldjava/JsonLdGraphLike.java b/commons-rdf-jsonld-java/src/main/java/org/apache/commons/rdf/jsonldjava/JsonLdGraphLike.java index 59d0210d..431e95f8 100644 --- a/commons-rdf-jsonld-java/src/main/java/org/apache/commons/rdf/jsonldjava/JsonLdGraphLike.java +++ b/commons-rdf-jsonld-java/src/main/java/org/apache/commons/rdf/jsonldjava/JsonLdGraphLike.java @@ -216,7 +216,7 @@ abstract class AbstractJsonLdGraphLike<T extends TripleLike> implements JsonLdGr /** * Common abstract {@link GraphLike}. * <p> - * Specialised by {@link JsonLdGraph}, {@link JsonLdUnionGraph} and + * specialized by {@link JsonLdGraph}, {@link JsonLdUnionGraph} and * {@link JsonLdDataset}. * * @param <T>