diff options
author | Tom Tromey <tromey@gcc.gnu.org> | 2003-08-26 23:14:07 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2003-08-26 23:14:07 +0000 |
commit | 777bb1d4382ddc4aa8c5db3885e276874a470de8 (patch) | |
tree | e8da29583e38e3aa8a01bbb42b15fdc7e764bc52 /libjava/java/lang/Math.java | |
parent | 228e7b6256a6d161aa9d45a0319cf7128ae7ad87 (diff) | |
download | gcc-777bb1d4382ddc4aa8c5db3885e276874a470de8.zip gcc-777bb1d4382ddc4aa8c5db3885e276874a470de8.tar.gz gcc-777bb1d4382ddc4aa8c5db3885e276874a470de8.tar.bz2 |
StrictMath.java: Typo fix.
* java/lang/StrictMath.java: Typo fix.
* java/lang/Math.java: Typo fix.
2003-08-26 Stephen Crawley <crawley@dstc.edu.au>
* java/lang/ThreadGroup.java (removeThread): null the 'group' field
of the removed Thread.
2003-08-26 Mark Wielaard <mark@klomp.org>
Reported by David Holmes <dholmes@dltech.com.au>.
* java/lang/InheritableThreadLocal.java (threadMap): Wrap inside
Collections.synchronizedMap.
* java/lang/ThreadLocal.java (valueMap): Likewise.
From-SVN: r70828
Diffstat (limited to 'libjava/java/lang/Math.java')
-rw-r--r-- | libjava/java/lang/Math.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/lang/Math.java b/libjava/java/lang/Math.java index 0d0930e..cb5f70b 100644 --- a/libjava/java/lang/Math.java +++ b/libjava/java/lang/Math.java @@ -1,5 +1,5 @@ /* java.lang.Math -- common mathematical functions, native allowed - Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -521,7 +521,7 @@ public final class Math * double to <code>x / y</code> (ties go to the even n); for a zero * remainder, the sign is that of <code>x</code>. If either argument is NaN, * the first argument is infinite, or the second argument is zero, the result - * is NaN; if x is finite but y is infinte, the result is x. This is + * is NaN; if x is finite but y is infinite, the result is x. This is * accurate within the limits of doubles. * * @param x the dividend (the top half) |