aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/lombok/Value.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/Value.java b/src/core/lombok/Value.java
index 2cecea63..dd75d97a 100644
--- a/src/core/lombok/Value.java
+++ b/src/core/lombok/Value.java
@@ -49,7 +49,7 @@ public @interface Value {
* We suggest the name: "of", like so:
*
* <pre>
- * public @Data(staticConstructor = "of") class Point { final int x, y; }
+ * public @Value(staticConstructor = "of") class Point { final int x, y; }
* </pre>
*
* Default: No static constructor, instead the normal constructor is public.