# HG changeset patch # User Chris Seaton # Date 1420047310 0 # Node ID 144fba40c9796a43d17aaefcd68de09ed45b1778 # Parent c16786645355d15f068642f927412c51aeef7930 Truffle: typo in documentation of PrimitiveValueProfile. diff -r c16786645355 -r 144fba40c979 graal/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/PrimitiveValueProfile.java --- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/PrimitiveValueProfile.java Tue Dec 30 14:52:38 2014 +0100 +++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/PrimitiveValueProfile.java Wed Dec 31 17:35:10 2014 +0000 @@ -33,7 +33,7 @@ * Represents a {@link ValueProfile} that speculates on the primitive equality or object identity of * values. *

- * Note that for {code float} and {@code double} values we compare primitive equality via + * Note that for {@code float} and {@code double} values we compare primitive equality via * {@link Float#floatToRawIntBits} and {@link Double#doubleToRawLongBits}, so that for example * {@code -0.0} is not considered the same as {@code 0.0}, even though primitive equality would * normally say that it was.