summaryrefslogtreecommitdiff
path: root/libjava/java/lang/StrictMath.java
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2003-08-26 23:14:07 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2003-08-26 23:14:07 +0000
commit36b8a2afb2057cf01f2b6b099657e3b206c095de (patch)
treee8da29583e38e3aa8a01bbb42b15fdc7e764bc52 /libjava/java/lang/StrictMath.java
parent38cefc4d1275bb0709ffe84d5e3ab58049fb96b4 (diff)
downloadgcc-36b8a2afb2057cf01f2b6b099657e3b206c095de.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70828 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/lang/StrictMath.java')
-rw-r--r--libjava/java/lang/StrictMath.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/lang/StrictMath.java b/libjava/java/lang/StrictMath.java
index b47d89ca040..bacc291faa5 100644
--- a/libjava/java/lang/StrictMath.java
+++ b/libjava/java/lang/StrictMath.java
@@ -1,5 +1,5 @@
/* java.lang.StrictMath -- common mathematical functions, strict Java
- 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.
@@ -1053,7 +1053,7 @@ public final strictfp class StrictMath
* 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.
+ * is NaN; if x is finite but y is infinite, the result is x.
*
* @param x the dividend (the top half)
* @param y the divisor (the bottom half)