From 0cc156a4e6485a1f7f857accbff7c5d387c8abe2 Mon Sep 17 00:00:00 2001 From: Scott Leberknight <174812+sleberknight@users.noreply.github.com> Date: Mon, 20 Nov 2023 23:19:52 -0500 Subject: [PATCH] Fix javadoc in DropwizardAppTests#registeredResourceClassesOf (#435) * 'they are now wrapper inside' should be 'they are now wrapped inside' * Add a comma after the 'so' for clarity --- .../org/kiwiproject/test/dropwizard/app/DropwizardAppTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/kiwiproject/test/dropwizard/app/DropwizardAppTests.java b/src/main/java/org/kiwiproject/test/dropwizard/app/DropwizardAppTests.java index a13e826a..087e5a75 100644 --- a/src/main/java/org/kiwiproject/test/dropwizard/app/DropwizardAppTests.java +++ b/src/main/java/org/kiwiproject/test/dropwizard/app/DropwizardAppTests.java @@ -83,7 +83,7 @@ public static Set registeredResourceObjectsOf( * @param jersey the {@link JerseyEnvironment} associated with the Dropwizard app being tested * @return set containing registered resource objects * @implNote Dropwizard 2.0 added one more layer of indirection for resource endpoint classes; they are now - * wrapper inside a {@link DropwizardResourceConfig.SpecificBinder} so this method needs to unwrap those and + * wrapped inside a {@link DropwizardResourceConfig.SpecificBinder}, so this method needs to unwrap those and * add the wrapped objects to the returned set. To accomplish that, it has to perform some nastiness with the * {@link org.glassfish.jersey.internal.inject.Binding} returned by * {@link DropwizardResourceConfig.SpecificBinder#getBindings()}, specifically it must cast to