diff options
-rw-r--r-- | src/core/lombok/val.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/val.java b/src/core/lombok/val.java index 19840476..e2a56f1c 100644 --- a/src/core/lombok/val.java +++ b/src/core/lombok/val.java @@ -26,6 +26,6 @@ package lombok; * For example: {@code val x = 10.0;} will infer {@code double}, and {@code val y = new ArrayList<String>();} will infer {@code ArrayList<String>}. The local variable * will also be made final. * - * Note that this is an interface because {@code val x = 10;} will be desugared to <code>@val int x = 10;</code> + * Note that this is an interface because {@code val x = 10;} will be desugared to {@code @val int x = 10;} */ public @interface val {} |