From 09b35f69d59677d75045df05ffc25d4dc627c72a Mon Sep 17 00:00:00 2001 From: Soheil Hassas Yeganeh Date: Fri, 31 Jul 2015 19:57:20 -0400 Subject: [PATCH] Remove trailing spaces in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d3dfcac..bfac219 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ cmux is a generic Go library to multiplex connections based on their payload. Using cmux, you can serve gRPC, HTTP, and Go RPC -on the same TCP listener to avoid using one port per +on the same TCP listener to avoid using one port per protocol. ## How-To @@ -33,7 +33,7 @@ httpS := &http.Server{ } trpcS := rpc.NewServer() -s.Register(&ExampleRPCRcvr{}) +s.Register(&ExampleRPCRcvr{}) // Use the muxed listeners for your servers. go grpcS.Serve(grpcL)