changeset 19779:143d65ef196f

minor javadoc fix
author Doug Simon <doug.simon@oracle.com>
date Sun, 01 Mar 2015 15:42:38 +0100
parents 09dfba3dbfb2
children 9ab357c8c0d0
files graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/BytecodeFrame.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/BytecodeFrame.java	Thu Feb 19 16:54:36 2015 +0100
+++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/BytecodeFrame.java	Sun Mar 01 15:42:38 2015 +0100
@@ -85,7 +85,7 @@
 
     /**
      * True if this is a position inside an exception handler before the exception object has been
-     * consumed. In this case, {@link #numStack == 1} and {@link #getStackValue(int)
+     * consumed. In this case, {@link #numStack} {@code == 1} and {@link #getStackValue(int)
      * getStackValue(0)} is the location of the exception object. If deoptimization happens at this
      * position, the interpreter will rethrow the exception instead of executing the bytecode
      * instruction at this position.