You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/12/17 17:13:23 UTC

[commons-rdf] branch master updated: Normalize spelling to US English in comments.

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 0b1de50  Normalize spelling to US English in comments.
0b1de50 is described below

commit 0b1de50c428c960a0660d38c89f25b58dc4bd491
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 17 12:13:18 2020 -0500

    Normalize spelling to US English in comments.
---
 .../src/test/java/org/apache/commons/rdf/api/AbstractDatasetTest.java   | 2 +-
 .../src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/commons-rdf-api/src/test/java/org/apache/commons/rdf/api/AbstractDatasetTest.java b/commons-rdf-api/src/test/java/org/apache/commons/rdf/api/AbstractDatasetTest.java
index d6363c2..51010bf 100644
--- a/commons-rdf-api/src/test/java/org/apache/commons/rdf/api/AbstractDatasetTest.java
+++ b/commons-rdf-api/src/test/java/org/apache/commons/rdf/api/AbstractDatasetTest.java
@@ -688,7 +688,7 @@ public abstract class AbstractDatasetTest {
 
         dataset.add(null, example1, greeting, upper);
 
-        // Remove should also honour any case
+        // Remove should also honor any case
         dataset.remove(null, example1, null, mixed);
         assertFalse(dataset.contains(null, null, greeting, null));
 
diff --git a/commons-rdf-api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java b/commons-rdf-api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java
index afdd25f..112a618 100644
--- a/commons-rdf-api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java
+++ b/commons-rdf-api/src/test/java/org/apache/commons/rdf/api/AbstractGraphTest.java
@@ -481,7 +481,7 @@ public abstract class AbstractGraphTest {
         try (final Graph graph = factory.createGraph()) {
             graph.add(example1, greeting, upper);
 
-            // Remove should also honour any case
+            // Remove should also honor any case
             graph.remove(example1, null, mixed);
             assertFalse(graph.contains(null, greeting, null));