aboutsummaryrefslogtreecommitdiff
path: root/website/templates/features/experimental
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2018-11-12 21:30:23 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2018-11-12 21:30:23 +0100
commit94d11d89a79d6cb417bac8261449c3f895f84990 (patch)
tree81ff9b488f3f716eee1f3b59429e70c348cba3d5 /website/templates/features/experimental
parentdb19327cb4b9f5a08665b85d4cb953118ce69c13 (diff)
downloadlombok-94d11d89a79d6cb417bac8261449c3f895f84990.tar.gz
lombok-94d11d89a79d6cb417bac8261449c3f895f84990.tar.bz2
lombok-94d11d89a79d6cb417bac8261449c3f895f84990.zip
[issue #1938] addressing some small issues with the documentation.
Diffstat (limited to 'website/templates/features/experimental')
-rw-r--r--website/templates/features/experimental/FieldNameConstants.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/templates/features/experimental/FieldNameConstants.html b/website/templates/features/experimental/FieldNameConstants.html
index 283ebe55..50faf804 100644
--- a/website/templates/features/experimental/FieldNameConstants.html
+++ b/website/templates/features/experimental/FieldNameConstants.html
@@ -44,7 +44,7 @@
<@f.smallPrint>
<p>
- Starting with lombok v1.18.5, lombok will silently skip generating anything that already exists. You can define the inner <code>Fields</code> enum/class yourself,
+ Starting with lombok v1.18.6, lombok will silently skip generating anything that already exists. You can define the inner <code>Fields</code> enum/class yourself,
in which case lombok will add all the enum constants / public static final fields you haven't written yourself.
</p><p>
From lombok v1.16.22 to lombok v1.18.2, this feature generated constants inside the type directly; the name of these fields would for example turn field <code>exampleFieldName</code> into <code>public static final String FIELD_EXAMPLE_FIELD_NAME = "exampleFieldName";</code>. The prefix and suffix (here, <code>FIELD_</code>, and the empty string) were configurable. Starting with lombok v1.18.4 this feature has been redesigned into generating an inner type as described above.