Skip to content
Snippets Groups Projects
Commit 6b32583d authored by Brutzman, Don's avatar Brutzman, Don
Browse files

improved docs

parent a6a79fbe
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment