diff --git a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Client.java b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Client.java
index 73f8755fa0eb0db4694f1db55bd0dd0c37558848..f712e71dd50031f6c3acfc08f61b38b40acbb9a6 100644
--- a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Client.java
+++ b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Client.java
@@ -4,14 +4,12 @@ import java.io.*;
 import java.net.*;
 
 /**
- * This client program establishes a socket connection to the {@link TcpExamples.TcpExample4DispatchServer},
+ * This client program establishes a socket connection to the ,
  * then checks how long it takes to read the single line it expects as a server response.
  * The modification I have added is it checks for a password from the server.  And it matches it says success and disconnects
- * No fancy footwork here, it is pretty simple and similar to {@link TcpExamples.TcpExample3Client}.
+ * No fancy footwork here, it is pretty simple and similar to  TcpExamples.TcpExample3Client}.
  * borrowed code from class
  * 
- * @see TcpExample4DispatchServer
- * @see TcpExample4HandlerThread
  *
  * @see <a href="../../../src/TcpExamples/TcpExample4TerminalLog.txt" target="blank">TcpExample4TerminalLog.txt</a>
  * @see <a href="../../../src/TcpExamples/TcpExample4SequenceDiagram.png" target="blank">TcpExample4SequenceDiagram.png</a>
@@ -20,7 +18,7 @@ import java.net.*;
  * @author Don McGregor
  * @author Don Brutzman
  * @author MV3500 class
- * @MarkMM
+ * @author MarkMM
  */
 public class Matiski2Client
 {
diff --git a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2HandlerThread.java b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2HandlerThread.java
index 7351c34a37124a047cb7a9cce119776c19b76dd1..beb348bd1d096450c0779136f34b0243eb18de2f 100644
--- a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2HandlerThread.java
+++ b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2HandlerThread.java
@@ -5,18 +5,16 @@ import java.net.*;
 
 /**
  * <p>
- * This utility class supports the {@link TcpExamples.TcpExample4DispatchServer} program,
+ * This utility class supports the  TcpExamples.TcpExample4DispatchServer program,
  * handling all programming logic needed for a new socket connection
  * to run in a thread of its own. This is the server
  * portion as well, so we artificially invent what happens
  * if the server can't respond to a connection for several seconds.
  * </p>
  * <p>
- * Warning: do not run this class!  It is created and used automatically by {@link TcpExamples.TcpExample4DispatchServer} at run time.
+ * Warning: do not run this class!  It is created and used automatically by  TcpExamples.TcpExample4DispatchServer} at run time.
  * </p>
- * 
- * @see TcpExample4Client
- * @see TcpExample4DispatchServer
+ * see examples
  *
  * @see <a href="../../../src/TcpExamples/TcpExample4TerminalLog.txt" target="blank">TcpExample4TerminalLog.txt</a>
  * @see <a href="../../../src/TcpExamples/TcpExample4SequenceDiagram.png" target="blank">TcpExample4SequenceDiagram.png</a>
diff --git a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Server.java b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Server.java
index aedb8947b9021df2b83b624978fe613da5b64bc4..2d4360b3120d398c581fc7089be79bf800c4a477 100644
--- a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Server.java
+++ b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Server.java
@@ -9,8 +9,6 @@ import java.net.*;
  * This advanced technique is often used in high=performance high=capacity server programs.
  * 
  * 
- * @see TcpExample4Client
- * @see Matiski2HandlerThread
  *
  * @see <a href="../../../src/TcpExamples/TcpExample4TerminalLog.txt" target="blank">TcpExample4TerminalLog.txt</a>
  * @see <a href="../../../src/TcpExamples/TcpExample4SequenceDiagram.png" target="blank">TcpExample4SequenceDiagram.png</a>