From 35d379791b5f7fea581c200ce0c896b38f3fb111 Mon Sep 17 00:00:00 2001 From: inabajunmr Date: Sat, 2 Feb 2019 02:14:50 +0900 Subject: fix doc for Builder --- src/core/lombok/Builder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/lombok/Builder.java b/src/core/lombok/Builder.java index 705fe657..ea94eb4e 100644 --- a/src/core/lombok/Builder.java +++ b/src/core/lombok/Builder.java @@ -33,7 +33,7 @@ import java.lang.annotation.Target; *

* If a member is annotated, it must be either a constructor or a method. If a class is annotated, * then a private constructor is generated with all fields as arguments - * (as if {@code @AllArgsConstructor(AccessLevel.PRIVATE)} is present + * (as if {@code @AllArgsConstructor(access = AccessLevel.PRIVATE)} is present * on the class), and it is as if this constructor has been annotated with {@code @Builder} instead. * Note that this constructor is only generated if you haven't written any constructors and also haven't * added any explicit {@code @XArgsConstructor} annotations. In those cases, lombok will assume an all-args -- cgit