summaryrefslogtreecommitdiff
path: root/libjava/classpath/gnu/classpath/jdwp/event/ThreadStartEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/gnu/classpath/jdwp/event/ThreadStartEvent.java')
-rw-r--r--libjava/classpath/gnu/classpath/jdwp/event/ThreadStartEvent.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/classpath/gnu/classpath/jdwp/event/ThreadStartEvent.java b/libjava/classpath/gnu/classpath/jdwp/event/ThreadStartEvent.java
index 67caea97c22..2fa20791716 100644
--- a/libjava/classpath/gnu/classpath/jdwp/event/ThreadStartEvent.java
+++ b/libjava/classpath/gnu/classpath/jdwp/event/ThreadStartEvent.java
@@ -49,7 +49,7 @@ import java.io.IOException;
/**
* "Notification of a new running thread in the target VM. The new
- * thread can be the result of a call to {@link java.lang.Thread.start} or
+ * thread can be the result of a call to {@link java.lang.Thread#start} or
* the result of attaching a new thread to the VM though JNI. The
* notification is generated by the new thread some time before its
* execution starts. Because of this timing, it is possible to receive
@@ -70,9 +70,9 @@ public class ThreadStartEvent
private Thread _thread;
/**
- * Constructs a new <code>ThreadStartEvent</code>
+ * Constructs a new ThreadStartEvent object
*
- * @param tid the thread ID in which event occurred
+ * @param thread the thread ID in which event occurred
*/
public ThreadStartEvent (Thread thread) {
super (JdwpConstants.EventKind.THREAD_END);