diff --git a/projects/TcpExample1/src/tcpexample1/TcpExample.java b/projects/TcpExample1/src/tcpexample1/TcpExample.java
index 031f9603c2eb5ee1fa11219645c61c479c4c5177..9331507fcd37231ca44211fe9c9126b06fb35b8f 100644
--- a/projects/TcpExample1/src/tcpexample1/TcpExample.java
+++ b/projects/TcpExample1/src/tcpexample1/TcpExample.java
@@ -6,7 +6,7 @@ import java.net.*;
 /**
  * The simplest possible TCP network program. It listens for
  * a connection, from telnet (telnet localhost 2317) or a program
- * you right, which we will do later. Right now the TcpExample simply
+ * you write, which we will do later. Right now the TcpExample simply
  * writes a string in response to a connection. 
  * 
  * Testing the running server program from telnet looks like this:
@@ -39,7 +39,7 @@ public class TcpExample
             ServerSocket serverSocket = new ServerSocket(2317);
             
             // The Socket object represents the connection between
-            // the servere and client, including a full duplex
+            // the server and client, including a full duplex
             // connection
             Socket clientConnection = serverSocket.accept();