From fd95e48ea89fa38f285c5f5bbc8747e4900af40e Mon Sep 17 00:00:00 2001 From: Peter Bourgon Date: Fri, 30 Jun 2017 09:03:10 +0200 Subject: [PATCH 1/2] README: clarify discussion of 'modern enterprises' Fixes #558. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 723e3f666..2d9a2b4db 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ business value. Go has emerged as the language of the server, but it remains underrepresented in so-called "modern enterprise" companies like Facebook, Twitter, Netflix, and -SoundCloud. These organizations have largely adopted JVM-based stacks for their -business logic, owing in large part to libraries and ecosystems that directly -support their microservice architectures. +SoundCloud. Many of these organizations have turned to JVM-based stacks for +their business logic, owing in large part to libraries and ecosystems that +directly support their microservice architectures. To reach its next level of success, Go needs more than simple primitives and idioms. It needs a comprehensive toolkit, for coherent distributed programming From d09a670dfc01a4d74f857d932bde6eb3fbe18642 Mon Sep 17 00:00:00 2001 From: Peter Bourgon Date: Fri, 30 Jun 2017 09:03:50 +0200 Subject: [PATCH 2/2] transport/http: docs: clarify Server implements Fixes #560. --- transport/http/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/http/server.go b/transport/http/server.go index 0bea793f9..311f76c81 100644 --- a/transport/http/server.go +++ b/transport/http/server.go @@ -21,7 +21,7 @@ type Server struct { logger log.Logger } -// NewServer constructs a new server, which implements http.Server and wraps +// NewServer constructs a new server, which implements http.Handler and wraps // the provided endpoint. func NewServer( e endpoint.Endpoint,