summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2006-05-15 22:24:34 +0000
committerTom Tromey <tromey@redhat.com>2006-05-15 22:24:34 +0000
commit8e385101dbfd3f06bd6ef46eeeb4c9a372c664cc (patch)
treeaa522b3c8172ccd6038bc59f14e3907ffe82a907
parent5e8704b0f93bf54154dac38e3cbef50436127424 (diff)
downloadclasspath-8e385101dbfd3f06bd6ef46eeeb4c9a372c664cc.tar.gz
* java/lang/Thread.java (State): Fixed typo.
-rw-r--r--ChangeLog4
-rw-r--r--java/lang/Thread.java2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4413c36e1..f5d9c41e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-05-15 Tom Tromey <tromey@redhat.com>
+
+ * java/lang/Thread.java (State): Fixed typo.
+
2006-05-15 Mark Wielaard <mark@klomp.org>
* configure.ac (VERSION): Set to 0.91-generics.
diff --git a/java/lang/Thread.java b/java/lang/Thread.java
index 55d134fe6..51e0c107a 100644
--- a/java/lang/Thread.java
+++ b/java/lang/Thread.java
@@ -1204,7 +1204,7 @@ public class Thread implements Runnable
* to run.</li>
* <li>BLOCKED -- The thread is blocked waiting on an I/O operation
* or to obtain a lock.</li>
- * <li>WAITING -- The thread is waiting indefinately for another thread
+ * <li>WAITING -- The thread is waiting indefinitely for another thread
* to do something.</li>
* <li>TIMED_WAITING -- The thread is waiting for a specific amount of time
* for another thread to do something.</li>