diff options
author | YassinHajaj <YassinHajaj@users.noreply.github.com> | 2022-11-17 11:30:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 11:30:11 +0100 |
commit | 29adc2f371213afe4cca88bce377f53fb8ea7a82 (patch) | |
tree | 57a58f16530d11248bdfe04e0873d1cfba1e6aa0 /src/core/lombok | |
parent | 79ad066117d0af5c57fd15a7b1c74b2dc3a9d711 (diff) | |
download | lombok-29adc2f371213afe4cca88bce377f53fb8ea7a82.tar.gz lombok-29adc2f371213afe4cca88bce377f53fb8ea7a82.tar.bz2 lombok-29adc2f371213afe4cca88bce377f53fb8ea7a82.zip |
Replaced "Constructor" by "constructor" in URL
Diffstat (limited to 'src/core/lombok')
-rw-r--r-- | src/core/lombok/RequiredArgsConstructor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/RequiredArgsConstructor.java b/src/core/lombok/RequiredArgsConstructor.java index f21bd647..8f2f365a 100644 --- a/src/core/lombok/RequiredArgsConstructor.java +++ b/src/core/lombok/RequiredArgsConstructor.java @@ -30,7 +30,7 @@ import java.lang.annotation.Target; * Generates a constructor with required arguments. * Required arguments are final fields and fields with constraints such as {@code @NonNull}. * <p> - * Complete documentation is found at <a href="https://projectlombok.org/features/Constructor">the project lombok features page for @Constructor</a>. + * Complete documentation is found at <a href="https://projectlombok.org/features/constructor">the project lombok features page for @Constructor</a>. * <p> * Even though it is not listed, this annotation also has the {@code onConstructor} parameter. See the full documentation for more details. * |