Skip to content

Commit

Permalink
Merge pull request #2036 from inabajunmr/fix-javadoc-builder
Browse files Browse the repository at this point in the history
Fix Javadoc for @builder
  • Loading branch information
rzwitserloot authored Feb 12, 2019
2 parents cf7855b + 35d3797 commit 41ce6be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/lombok/Builder.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* <p>
* 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
Expand Down

0 comments on commit 41ce6be

Please sign in to comment.