diff graal/com.oracle.truffle.api/src/com/oracle/truffle/api/utilities/PrimitiveValueProfile.java @ 18769:144fba40c979

Truffle: typo in documentation of PrimitiveValueProfile.
author Chris Seaton <chris.seaton@oracle.com>
date Wed, 31 Dec 2014 17:35:10 +0000
parents 53afdc71b311
children bc3cd000d9c8
line wrap: on
line diff
--- 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.
  * <p>
- * 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.