diff options
author | Patrick Cornelißen <cornelis@pcornelissen.de> | 2017-11-04 12:25:11 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2017-11-07 03:43:54 +0100 |
commit | 931a77855843e05f6a3da036e6c73f6c4656782b (patch) | |
tree | 08670a0f643fc9d1dc517a4b377e22e968be9087 /src | |
parent | 98b0d91d091b554cb3ab9ed9f972d358c7cae01a (diff) | |
download | lombok-931a77855843e05f6a3da036e6c73f6c4656782b.tar.gz lombok-931a77855843e05f6a3da036e6c73f6c4656782b.tar.bz2 lombok-931a77855843e05f6a3da036e6c73f6c4656782b.zip |
fixed the second "equals" as well
Diffstat (limited to 'src')
-rw-r--r-- | src/core/lombok/ToString.java | 2 |
1 files changed, 1 insertions, 1 deletions
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. * <strong>default: false</strong> * - * @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; |