summaryrefslogtreecommitdiffstats
path: root/libjava/java/lang/Short.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/lang/Short.java')
-rw-r--r--libjava/java/lang/Short.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/lang/Short.java b/libjava/java/lang/Short.java
index 54e36a5f65c..1a82e3edf36 100644
--- a/libjava/java/lang/Short.java
+++ b/libjava/java/lang/Short.java
@@ -60,13 +60,13 @@ public final class Short extends Number implements Comparable
/**
* The minimum value a <code>short</code> can represent is -32768 (or
- * -2<sup>15</sup).
+ * -2<sup>15</sup>).
*/
public static final short MIN_VALUE = -32768;
/**
* The minimum value a <code>short</code> can represent is 32767 (or
- * 2<sup>15</sup).
+ * 2<sup>15</sup>).
*/
public static final short MAX_VALUE = 32767;
@@ -144,7 +144,7 @@ public final class Short extends Number implements Comparable
*
* @param s the <code>String</code> to convert
* @param radix the radix (base) to use in the conversion
- * @return the <code>String</code> argument converted to </code>short</code>
+ * @return the <code>String</code> argument converted to <code>short</code>
* @throws NumberFormatException if <code>s</code> cannot be parsed as a
* <code>short</code>
*/
OpenPOWER on IntegriCloud