From dea312f9c1d6c16a67ac05ac33487729af2cf7c5 Mon Sep 17 00:00:00 2001 From: Jan Nielsen Date: Fri, 17 Mar 2023 12:12:06 +0100 Subject: [PATCH] #1778 - Fix typo in Javadoc. --- .../java/org/springframework/hateoas/server/EntityLinks.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/hateoas/server/EntityLinks.java b/src/main/java/org/springframework/hateoas/server/EntityLinks.java index 2b3f5224..85c08788 100644 --- a/src/main/java/org/springframework/hateoas/server/EntityLinks.java +++ b/src/main/java/org/springframework/hateoas/server/EntityLinks.java @@ -27,7 +27,7 @@ import org.springframework.util.Assert; * Accessor to links pointing to controllers backing an entity type. The {@link IllegalArgumentException} potentially * thrown by the declared methods will only appear if the {@code Plugin#supports(Class)} method has returned * {@literal false} and the method has been invoked anyway, i.e. if {@code Plugin#supports(Class)} returns - * {@literal true} it's safe to invoke the interface methods an the exception will never be thrown. + * {@literal true} it's safe to invoke the interface methods and the exception will never be thrown. * * @author Oliver Gierke */