diff --git a/examples/src/TcpExamples/TcpExample1Telnet.java b/examples/src/TcpExamples/TcpExample1Telnet.java
index 7770e1cfe114c4ced2e43ed7b93bc70032dc4323..8afcd242338b39fb883628709686dfb3fc5ffe5b 100644
--- a/examples/src/TcpExamples/TcpExample1Telnet.java
+++ b/examples/src/TcpExamples/TcpExample1Telnet.java
@@ -51,8 +51,8 @@ public class TcpExample1Telnet
         try
         {
             System.out.println(TcpExample1Telnet.class.getName() + " has started and is waiting for a connection.");
-            System.out.println("  help: https://savage.nps.edu/Savage/developers.html#telnet");
-            System.out.println("  enter (telnet localhost 2317) or, for macOS (nc localhost 2317)..." );
+            System.out.println("  help:     https://savage.nps.edu/Savage/developers.html#telnet");
+            System.out.println("  terminal: enter (telnet localhost 2317) or, for macOS (nc localhost 2317)..." );
 			
             // The ServerSocket waits for a connection from a client.
             // It returns a Socket object when the connection occurs.