aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatrick Cornelißen <cornelis@pcornelissen.de>2017-11-04 11:45:41 +0100
committerRoel Spilker <r.spilker@gmail.com>2017-11-07 03:43:54 +0100
commit98b0d91d091b554cb3ab9ed9f972d358c7cae01a (patch)
tree9dd0009ae744ad02daae68905578591007997a1e /src
parentd92f508ec5998c6215ec959e9e9b22a2dc303861 (diff)
downloadlombok-98b0d91d091b554cb3ab9ed9f972d358c7cae01a.tar.gz
lombok-98b0d91d091b554cb3ab9ed9f972d358c7cae01a.tar.bz2
lombok-98b0d91d091b554cb3ab9ed9f972d358c7cae01a.zip
fix JavaDoc of callSuper in the ToString annotation
Diffstat (limited to 'src')
-rw-r--r--src/core/lombok/ToString.java2
1 files changed, 1 insertions, 1 deletions
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.
* <strong>default: false</strong>
*
- * @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;