From 98b0d91d091b554cb3ab9ed9f972d358c7cae01a Mon Sep 17 00:00:00 2001 From: Patrick Cornelißen Date: Sat, 4 Nov 2017 11:45:41 +0100 Subject: fix JavaDoc of callSuper in the ToString annotation --- src/core/lombok/ToString.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/lombok/ToString.java b/src/core/lombok/ToString.java index 18c3d9e3..4f59d40f 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 equals} implementation as part of the generated equals algorithm. + * @return Whether to call the superclass's {@code toString} implementation as part of the generated equals algorithm. */ boolean callSuper() default false; -- cgit