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 2022/11/07 13:40:32 UTC

[commons-functor] branch master updated: Javadocs and 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-functor.git


The following commit(s) were added to refs/heads/master by this push:
     new e543dd5  Javadocs and comments
e543dd5 is described below

commit e543dd5ab155738f022007382248a4e0178810b1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Nov 7 08:40:28 2022 -0500

    Javadocs and comments
    
    Normalize spelling to "behavior"
---
 .../aggregator/functions/DoubleMedianValueAggregatorFunctionTest.java   | 2 +-
 .../aggregator/functions/IntMedianValueAggregatorFunctionTest.java      | 2 +-
 .../test/java/org/apache/commons/functor/example/FlexiMapExample.java   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/src/test/java/org/apache/commons/functor/aggregator/functions/DoubleMedianValueAggregatorFunctionTest.java b/core/src/test/java/org/apache/commons/functor/aggregator/functions/DoubleMedianValueAggregatorFunctionTest.java
index 4f89c1e..d973ceb 100644
--- a/core/src/test/java/org/apache/commons/functor/aggregator/functions/DoubleMedianValueAggregatorFunctionTest.java
+++ b/core/src/test/java/org/apache/commons/functor/aggregator/functions/DoubleMedianValueAggregatorFunctionTest.java
@@ -62,7 +62,7 @@ public class DoubleMedianValueAggregatorFunctionTest extends BaseFunctorTest {
         DoubleMedianValueAggregatorFunction fct = new DoubleMedianValueAggregatorFunction(true);
         assertTrue(fct.isUseCopy());
         checkMedianCopy(fct);
-        // this is also the default behaviour so ensure that is the case
+        // this is also the default behavior so ensure that is the case
         fct = (DoubleMedianValueAggregatorFunction) makeFunctor();
         checkMedianCopy(fct);
     }
diff --git a/core/src/test/java/org/apache/commons/functor/aggregator/functions/IntMedianValueAggregatorFunctionTest.java b/core/src/test/java/org/apache/commons/functor/aggregator/functions/IntMedianValueAggregatorFunctionTest.java
index 8c87f44..df167ff 100644
--- a/core/src/test/java/org/apache/commons/functor/aggregator/functions/IntMedianValueAggregatorFunctionTest.java
+++ b/core/src/test/java/org/apache/commons/functor/aggregator/functions/IntMedianValueAggregatorFunctionTest.java
@@ -59,7 +59,7 @@ public class IntMedianValueAggregatorFunctionTest extends BaseFunctorTest {
         IntegerMedianValueAggregatorFunction fct = new IntegerMedianValueAggregatorFunction(true);
         assertTrue(fct.isUseCopy());
         checkMedianCopy(fct);
-        // this is also the default behaviour so ensure that is the case
+        // this is also the default behavior so ensure that is the case
         fct = (IntegerMedianValueAggregatorFunction) makeFunctor();
         checkMedianCopy(fct);
     }
diff --git a/core/src/test/java/org/apache/commons/functor/example/FlexiMapExample.java b/core/src/test/java/org/apache/commons/functor/example/FlexiMapExample.java
index e57dd51..3871af1 100644
--- a/core/src/test/java/org/apache/commons/functor/example/FlexiMapExample.java
+++ b/core/src/test/java/org/apache/commons/functor/example/FlexiMapExample.java
@@ -68,7 +68,7 @@ public class FlexiMapExample {
      */
 
     /*
-     * In a "test first" style, let's first specify the Map behaviour we'd like to implement via unit tests.
+     * In a "test first" style, let's first specify the Map behavior we'd like to implement via unit tests.
      */
 
     /*