diff graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLExpressionNode.java @ 14906:f3a5036cc13c

javadoc fixes javadoc has become stricter in jdk8
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 31 Mar 2014 20:51:09 +0200
parents ff3136ecb5a7
children 111bf82514ca
line wrap: on
line diff
--- a/graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLExpressionNode.java	Mon Mar 31 19:07:49 2014 +0200
+++ b/graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLExpressionNode.java	Mon Mar 31 20:51:09 2014 +0200
@@ -31,8 +31,8 @@
 
 /**
  * Base class for all SL nodes that produce a value and therefore benefit from type specialization.
- * The annotation {@Link TypeSystemReference} specifies the SL types. Specifying it here
- * defines the type system for all subclasses.
+ * The annotation {@link TypeSystemReference} specifies the SL types. Specifying it here defines the
+ * type system for all subclasses.
  */
 @TypeSystemReference(SLTypes.class)
 public abstract class SLExpressionNode extends SLStatementNode {
@@ -44,8 +44,8 @@
     public abstract Object executeGeneric(VirtualFrame frame);
 
     /**
-     * When we use an expression at places where a {@SLStatmentNode statement} is
-     * already sufficient, the return value is just discarded.
+     * When we use an expression at places where a {@link SLStatementNode statement} is already
+     * sufficient, the return value is just discarded.
      */
     @Override
     public void executeVoid(VirtualFrame frame) {