diff options
Diffstat (limited to 'src/lombok/Synchronized.java')
-rw-r--r-- | src/lombok/Synchronized.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lombok/Synchronized.java b/src/lombok/Synchronized.java index 91b3827c..72c44c71 100644 --- a/src/lombok/Synchronized.java +++ b/src/lombok/Synchronized.java @@ -31,8 +31,8 @@ import java.lang.annotation.Target; * Object, so that other code not under your control doesn't meddle with your thread management by locking on * your own instance. * <p> - * For non-static methods, a field named <code>$lock</code> is used, and for static methods, - * <code>$LOCK</code> is used. These will be generated if needed and if they aren't already present. The contents + * For non-static methods, a field named {@code $lock} is used, and for static methods, + * {@code $LOCK} is used. These will be generated if needed and if they aren't already present. The contents * of the fields will be serializable. */ @Target(ElementType.METHOD) |