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 2023/01/13 19:46:07 UTC

[commons-functor] branch master updated: Javadoc fixes

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 9fd3e0f  Javadoc fixes
9fd3e0f is described below

commit 9fd3e0f96553c937b7aab9d2fcf705b507e8c073
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jan 13 14:46:03 2023 -0500

    Javadoc fixes
---
 .../java/org/apache/commons/functor/core/composite/Composite.java     | 2 +-
 .../java/org/apache/commons/functor/example/QuicksortExample.java     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/core/src/main/java/org/apache/commons/functor/core/composite/Composite.java b/core/src/main/java/org/apache/commons/functor/core/composite/Composite.java
index 952504b..2f1b1c1 100644
--- a/core/src/main/java/org/apache/commons/functor/core/composite/Composite.java
+++ b/core/src/main/java/org/apache/commons/functor/core/composite/Composite.java
@@ -47,7 +47,7 @@ public final class Composite {
     /**
      * Create a composite Procedure.
      * @param <A> the function argument type.
-     * @param <T> the the procedure argument type and function returned value type.
+     * @param <T> the procedure argument type and function returned value type.
      * @param procedure Procedure to execute against output of <code>f</code>
      * @param function Function to apply
      * @return CompositeProcedure<A>
diff --git a/core/src/test/java/org/apache/commons/functor/example/QuicksortExample.java b/core/src/test/java/org/apache/commons/functor/example/QuicksortExample.java
index 5639398..1a0d948 100644
--- a/core/src/test/java/org/apache/commons/functor/example/QuicksortExample.java
+++ b/core/src/test/java/org/apache/commons/functor/example/QuicksortExample.java
@@ -349,7 +349,7 @@ public class QuicksortExample {
                 /* Create a list to contain the results. */
                 List<Object> result = new ArrayList<Object>(list.size());
                 /*
-                 * Recursively apply quicksort the the elements in the
+                 * Recursively apply quicksort the elements in the
                  * tail less than the head, adding the result to the
                  * sorted list we're generating.
                  */
@@ -363,7 +363,7 @@ public class QuicksortExample {
                  */
                 result.add(head.evaluate(list));
                 /*
-                 * Recursively apply quicksort the the elements in the
+                 * Recursively apply quicksort the elements in the
                  * tail greater than the head, adding the result to the
                  * sorted list we're generating.
                  */