# HG changeset patch # User Benoit Daloze # Date 1443615909 -7200 # Node ID 3a96086cf698ef5af424e7f52cd098d229a5a918 # Parent dcee887614b1aa57c2c11fdd175cfd975c8f1cb1 Fix a couple typos in SL javadoc. diff -r dcee887614b1 -r 3a96086cf698 truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/expression/SLEqualNode.java --- a/truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/expression/SLEqualNode.java Wed Sep 30 13:09:22 2015 +0200 +++ b/truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/expression/SLEqualNode.java Wed Sep 30 14:25:09 2015 +0200 @@ -58,7 +58,7 @@ * same, the specializations already cover all possible cases that can return {@code true} and the * generic case is trivial. *

- * Note that we do not need the analogous {@code =!} operator, because we can just + * Note that we do not need the analogous {@code !=} operator, because we can just * {@link SLLogicalNotNode negate} the {@code ==} operator. */ @NodeInfo(shortName = "==") diff -r dcee887614b1 -r 3a96086cf698 truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/local/SLReadLocalVariableNode.java --- a/truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/local/SLReadLocalVariableNode.java Wed Sep 30 13:09:22 2015 +0200 +++ b/truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/local/SLReadLocalVariableNode.java Wed Sep 30 14:25:09 2015 +0200 @@ -84,8 +84,7 @@ } /** - * This is the generic case that always succeeds. Since we already have another specialization - * with the same signature above, we need to order them explicitly with the order attribute. + * This is the generic case that always succeeds. */ @Specialization(contains = {"readLong", "readBoolean", "readObject"}) protected Object read(VirtualFrame frame) {