diff options
Diffstat (limited to 'libjava/classpath/java/lang/Boolean.java')
-rw-r--r-- | libjava/classpath/java/lang/Boolean.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/classpath/java/lang/Boolean.java b/libjava/classpath/java/lang/Boolean.java index 2b0236d..f2eaf41 100644 --- a/libjava/classpath/java/lang/Boolean.java +++ b/libjava/classpath/java/lang/Boolean.java @@ -226,7 +226,7 @@ public final class Boolean implements Serializable, Comparable<Boolean> * Compares this Boolean to another. * * @param other the Boolean to compare this Boolean to - * @return 0 if both Booleans represent the same value, a positive number + * @return 0 if both Booleans represent the same value, a positive number * if this Boolean represents true and the other false, and a negative * number otherwise. * @since 1.5 @@ -247,5 +247,5 @@ public final class Boolean implements Serializable, Comparable<Boolean> { return "true".equalsIgnoreCase(b) ? true : false; } - + } |