From 6b32583d1a3b92ee761d159a26d8aac0347c1aca Mon Sep 17 00:00:00 2001
From: brutzman <brutzman@nps.edu>
Date: Wed, 4 Jul 2018 23:46:40 -0700
Subject: [PATCH] improved docs

---
 projects/TcpExample1/src/tcpexample1/TcpExample.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/projects/TcpExample1/src/tcpexample1/TcpExample.java b/projects/TcpExample1/src/tcpexample1/TcpExample.java
index 031f9603c2..9331507fcd 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();
             
-- 
GitLab