diff options
Diffstat (limited to 'libjava/java/lang/Math.java')
-rw-r--r-- | libjava/java/lang/Math.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/lang/Math.java b/libjava/java/lang/Math.java index e41eca7ce1a..5c9a39bff0f 100644 --- a/libjava/java/lang/Math.java +++ b/libjava/java/lang/Math.java @@ -564,7 +564,7 @@ public final class Math /** * Take the nearest integer to the argument. This is equivalent to - * <code>(int) Math.floor(a + 0.5f). If the argument is NaN, the result + * <code>(int) Math.floor(a + 0.5f)</code>. If the argument is NaN, the result * is 0; otherwise if the argument is outside the range of int, the result * will be Integer.MIN_VALUE or Integer.MAX_VALUE, as appropriate. * |