diff -r 22badc53802f -r bf24e33c7919 jdk/src/java.base/share/classes/java/lang/Cloneable.java --- a/jdk/src/java.base/share/classes/java/lang/Cloneable.java Wed Aug 05 12:19:38 2015 -0700 +++ b/jdk/src/java.base/share/classes/java/lang/Cloneable.java Thu Aug 06 13:20:13 2015 +0300 @@ -36,11 +36,11 @@ * CloneNotSupportedException being thrown. *

* By convention, classes that implement this interface should override - * Object.clone (which is protected) with a public method. + * {@code Object.clone} (which is protected) with a public method. * See {@link java.lang.Object#clone()} for details on overriding this * method. *

- * Note that this interface does not contain the clone method. + * Note that this interface does not contain the {@code clone} method. * Therefore, it is not possible to clone an object merely by virtue of the * fact that it implements this interface. Even if the clone method is invoked * reflectively, there is no guarantee that it will succeed.