From b62ce8fb2fe5348e37da4025b7550f21876f6e28 Mon Sep 17 00:00:00 2001 From: Andre Brait Date: Mon, 13 Jul 2020 19:45:29 +0200 Subject: Fix typo --- src/core/lombok/EqualsAndHashCode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/core/lombok/EqualsAndHashCode.java b/src/core/lombok/EqualsAndHashCode.java index 5191ee0c..279e6e3d 100644 --- a/src/core/lombok/EqualsAndHashCode.java +++ b/src/core/lombok/EqualsAndHashCode.java @@ -148,7 +148,7 @@ public @interface EqualsAndHashCode { NEVER, /** * Cache the result of the first invocation of {@code hashCode} and use it for subsequent invocations. - * This can improve performance in if all fields used for calculating the {@code hashCode} are immutable + * This can improve performance if all fields used for calculating the {@code hashCode} are immutable * and thus every invocation of {@code hashCode} will always return the same value. * Do not use this if there's any chance that different invocations of {@code hashCode} * might return different values. -- cgit