From 8c2ea4fbc64e8b7b4e553a6f8b9363eb0b70d76a Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 21 Nov 2016 22:54:29 +0100 Subject: Finish documentation on `var` --- website/features/experimental/Accessors.html | 2 +- website/features/experimental/var.html | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'website') diff --git a/website/features/experimental/Accessors.html b/website/features/experimental/Accessors.html index 434cbdbe..909c0873 100644 --- a/website/features/experimental/Accessors.html +++ b/website/features/experimental/Accessors.html @@ -97,7 +97,7 @@
diff --git a/website/features/experimental/var.html b/website/features/experimental/var.html index 7a045c00..dde9c35e 100644 --- a/website/features/experimental/var.html +++ b/website/features/experimental/var.html @@ -15,7 +15,7 @@

Since

- @var was introduced as experimental feature in lombok v1.16.11. + @var was introduced as experimental feature in lombok v1.16.12.

@@ -49,7 +49,7 @@

Supported configuration keys:

lombok.val.flagUsage = [allow] (default: not set)
-
Lombok will flag any usage of var as a error if not configured.
+
Lombok will flag any usage of var as an error if not configured.
@@ -59,12 +59,12 @@ is an expression with a compound type: The result is both AbstractCollection as well as Serializable. The type inferred will be AbstractCollection, as that is a class, whereas Serializable is an interface.

- In ambiguous cases, such as when the initializer expression is null, java.lang.Object is inferred. + In ambiguous cases, java.lang.Object is inferred.

-- cgit