# HG changeset patch # User Doug Simon # Date 1415179862 -3600 # Node ID d49691aab589f7bdf20afd421b992e44e6fe3d21 # Parent 810b676423bcf5990e3cce448c24f0d6222338a8 minor documentation fixes diff -r 810b676423bc -r d49691aab589 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotGraalRuntime.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotGraalRuntime.java Tue Nov 04 22:43:54 2014 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotGraalRuntime.java Wed Nov 05 10:31:02 2014 +0100 @@ -257,7 +257,7 @@ /** * Graal mirrors are stored as a {@link ClassValue} associated with the {@link Class} of the - * type. This data structure stores both {@link HotSpotResolvedJavaMethod} and + * type. This data structure stores both {@link HotSpotResolvedObjectType} and * {@link HotSpotResolvedPrimitiveType} types. */ private final ClassValue graalMirrors = new ClassValue() { @@ -330,7 +330,7 @@ /** * Gets the Graal mirror for a {@link Class} object. * - * @return the {@link HotSpotResolvedJavaType} corresponding to {@code javaClass} + * @return the {@link ResolvedJavaType} corresponding to {@code javaClass} */ public ResolvedJavaType fromClass(Class javaClass) { return graalMirrors.get(javaClass);