From 08d2f57b77f29eaacc9320f0675b9e778b851491 Mon Sep 17 00:00:00 2001 From: Scott Leberknight <174812+sleberknight@users.noreply.github.com> Date: Fri, 1 Nov 2024 15:23:01 -0400 Subject: [PATCH] Fix Javadoc typos in KiwiResponses (#1214) Fix Javadoc on the apply methods which have a "tha" instead of "that" --- src/main/java/org/kiwiproject/jaxrs/KiwiResponses.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/kiwiproject/jaxrs/KiwiResponses.java b/src/main/java/org/kiwiproject/jaxrs/KiwiResponses.java index edb15f27..2d569039 100644 --- a/src/main/java/org/kiwiproject/jaxrs/KiwiResponses.java +++ b/src/main/java/org/kiwiproject/jaxrs/KiwiResponses.java @@ -828,7 +828,7 @@ public static void accept(Response response, Consumer responseConsumer } /** - * Given a {@link Response} Supplier, perform an action tha returns a result using one of the given functions. + * Given a {@link Response} Supplier, perform an action that returns a result using one of the given functions. *

* Ensures the response is closed after performing the action. * @@ -855,7 +855,7 @@ public static T apply(Supplier responseSupplier, } /** - * Given a {@link Response}, perform an action tha returns a result using the given function. + * Given a {@link Response}, perform an action that returns a result using the given function. *

* Ensures the response is closed after performing the action. *