--- old/src/java.base/share/classes/sun/reflect/generics/scope/AbstractScope.java 2015-09-24 14:38:23.189755365 +0300 +++ new/src/java.base/share/classes/sun/reflect/generics/scope/AbstractScope.java 2015-09-24 14:38:22.725755375 +0300 @@ -32,10 +32,10 @@ /** * Abstract superclass for lazy scope objects, used when building * factories for generic information repositories. - * The type parameter D represents the type of reflective + * The type parameter {@code D} represents the type of reflective * object whose scope this class is representing. *

To subclass this, all one needs to do is implement - * computeEnclosingScope and the subclass' constructor. + * {@code computeEnclosingScope} and the subclass' constructor. */ public abstract class AbstractScope implements Scope { @@ -54,9 +54,9 @@ protected AbstractScope(D decl){ recvr = decl;} /** - * Accessor for the receiver - the object whose scope this Scope + * Accessor for the receiver - the object whose scope this {@code Scope} * object represents. - * @return The object whose scope this Scope object represents + * @return The object whose scope this {@code Scope} object represents */ protected D getRecvr() {return recvr;}