summaryrefslogtreecommitdiff
path: root/java/lang/Boolean.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/lang/Boolean.java')
-rw-r--r--java/lang/Boolean.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/lang/Boolean.java b/java/lang/Boolean.java
index 2b0236d1b..f2eaf4125 100644
--- a/java/lang/Boolean.java
+++ b/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;
}
-
+
}