From a5e25625bd8004eddf7481984a4f10ddd1a86edb Mon Sep 17 00:00:00 2001 From: Charlie Andrews Date: Tue, 10 Feb 2015 15:47:19 -0600 Subject: [PATCH] Edited README for clarification. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9c9b8b6..69218f4 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,9 @@ Simple server and client that communicate using Go's RPC library. Start the server with: - go run server.go + > go run server.go -Then start the client with: +Then send an RPC from the client with: - go run client.go --factor1=12 --factor2=13 + > go run client.go --factor1=12 --factor2=13 + 156