From e78fa98daab4a8e960c52e5621429125e8e0b872 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 7 Nov 2011 22:02:19 +0100 Subject: Replaced with @code --- src/core/lombok/val.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core') 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();} will infer {@code ArrayList}. The local variable * will also be made final. * - * Note that this is an interface because {@code val x = 10;} will be desugared to @val int x = 10; + * Note that this is an interface because {@code val x = 10;} will be desugared to {@code @val int x = 10;} */ public @interface val {} -- cgit