From ea0a73f55e63268ceb71cef1746fd1e2649f52ba Mon Sep 17 00:00:00 2001 From: Soheil Hassas Yeganeh Date: Wed, 29 Jul 2015 14:02:24 -0400 Subject: [PATCH] Nit in README Make capitalizations consistent. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c0a2df5..62e252f 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ if err != nil { m := cmux.New(l) // Match connections in order. -grpcl := m.Match(cmux.HTTP2HeaderField("content-type", "application/grpc")) -httpl := m.Match(cmux.Any()) // Any means anything that is not yet matched. +grpcL := m.Match(cmux.HTTP2HeaderField("content-type", "application/grpc")) +httpL := m.Match(cmux.Any()) // Any means anything that is not yet matched. // Create your protocol servers. grpcS := grpc.NewServer() @@ -31,8 +31,8 @@ httpS := &http.Server{ } // Use the muxed listeners for your servers. -go grpcS.Serve(grpcl) -go httpS.Serve(httpl) +go grpcS.Serve(grpcL) +go httpS.Serve(httpL) // Start serving! m.Serve()