diff options
Diffstat (limited to 'java/lang/annotation/Annotation.java')
-rw-r--r-- | java/lang/annotation/Annotation.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/lang/annotation/Annotation.java b/java/lang/annotation/Annotation.java index cc334ec3b..aac8bb9f1 100644 --- a/java/lang/annotation/Annotation.java +++ b/java/lang/annotation/Annotation.java @@ -67,13 +67,13 @@ public interface Annotation * annotation, according to the following: * <ul> * <li>If the members are <code>float</code>s, then, for floats - * <code>x</code> and <code>y</code>, + * <code>x</code> and <code>y</code>, * <code>Float.valueOf(x).equals(Float.valueOf(y)</code> must return * true. This differs from the usual (<code>==</code>) comparison * in that <code>NaN</code> is considered equal to itself and positive * and negative zero are seen as different.</li> * <li>Likewise, if the members are <code>double</code>s, then, for doubles - * <code>x</code> and <code>y</code>, + * <code>x</code> and <code>y</code>, * <code>Double.valueOf(x).equals(Double.valueOf(y)</code> must return * true. This differs from the usual (<code>==</code>) comparison * in that <code>NaN</code> is considered equal to itself and positive |