From 931a77855843e05f6a3da036e6c73f6c4656782b Mon Sep 17 00:00:00 2001 From: Patrick Cornelißen Date: Sat, 4 Nov 2017 12:25:11 +0100 Subject: fixed the second "equals" as well --- src/core/lombok/ToString.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core') diff --git a/src/core/lombok/ToString.java b/src/core/lombok/ToString.java index 4f59d40f..0c43c40b 100644 --- a/src/core/lombok/ToString.java +++ b/src/core/lombok/ToString.java @@ -64,7 +64,7 @@ public @interface ToString { * Include the result of the superclass's implementation of {@code toString} in the output. * default: false * - * @return Whether to call the superclass's {@code toString} implementation as part of the generated equals algorithm. + * @return Whether to call the superclass's {@code toString} implementation as part of the generated toString algorithm. */ boolean callSuper() default false; -- cgit