From df81fa33be0315fc30ae2426c8139fb805339a5a Mon Sep 17 00:00:00 2001
From: brutzman <brutzman@nps.edu>
Date: Mon, 29 Jul 2024 12:56:18 -0700
Subject: [PATCH] editorial

---
 examples/src/TcpExamples/TcpExample4Client.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/src/TcpExamples/TcpExample4Client.java b/examples/src/TcpExamples/TcpExample4Client.java
index 9c6999a580..9e4030fe4e 100644
--- a/examples/src/TcpExamples/TcpExample4Client.java
+++ b/examples/src/TcpExamples/TcpExample4Client.java
@@ -37,10 +37,10 @@ public class TcpExample4Client
     public static void main(String[] args) {
         try {
             System.out.println(TcpExample4Client.class.getName() + " start, loop " + MAX_LOOP_COUNT + " times");
-            System.out.println("==================================================");
+            System.out.println("=======================================================");
             for (int loopCount = 1; loopCount <= MAX_LOOP_COUNT; loopCount++) // loop then exit
             {
-                System.out.println(TcpExample4Client.class.getName() + " creating socket #" + loopCount + "...");
+                System.out.println(TcpExample4Client.class.getName() + " creating new socket #" + loopCount + "...");
 
                 // We request an IP to connect to ("localhost") and
                 // port number at that IP (2317). This establishes
@@ -67,7 +67,7 @@ public class TcpExample4Client
 
                 System.out.println(TcpExample4Client.class.getName() + ": message received from server='" + serverMessage + "'");
                 System.out.println(TcpExample4Client.class.getName() + ": time msec required for read=" + timeLength);
-                System.out.println("==================================================");
+                System.out.println("=======================================================");
                 // To push this further, launch multiple copies of TcpExample4Client simultaneously
             }
             System.out.println(TcpExample4Client.class.getName() + " complete");
-- 
GitLab