From fab09ef735485de40de5ded1b93523e6d19aea70 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Sat, 1 Jun 2019 05:47:43 -0700 Subject: [PATCH] Minor rewording --- examples/http-servers/http-servers.go | 2 +- examples/http-servers/http-servers.hash | 4 ++-- public/http-servers | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/http-servers/http-servers.go b/examples/http-servers/http-servers.go index 9b97c1d..5331a75 100644 --- a/examples/http-servers/http-servers.go +++ b/examples/http-servers/http-servers.go @@ -9,7 +9,7 @@ import ( // A fundamental concept in `net/http` servers is // *handlers*. A handler is an object implementing the -// `http.Handler` interface. A very common way to write +// `http.Handler` interface. A common way to write // a handler is by using the `http.HandlerFunc` adapter // on functions with the appropriate signature. func hello(w http.ResponseWriter, req *http.Request) { diff --git a/examples/http-servers/http-servers.hash b/examples/http-servers/http-servers.hash index 4728691..fe3b07d 100644 --- a/examples/http-servers/http-servers.hash +++ b/examples/http-servers/http-servers.hash @@ -1,2 +1,2 @@ -1bffba1944537a9f9d7166a67d7a2b9f4ce2d70e -hg47WDVcY_W +cc9a1fd34b3735d59f0972af21a26aabfff660c8 +FVQG_jryhVF diff --git a/public/http-servers b/public/http-servers index be056a4..d084f5a 100644 --- a/public/http-servers +++ b/public/http-servers @@ -18,7 +18,7 @@ - +
package main
 
@@ -44,7 +44,7 @@

A fundamental concept in net/http servers is handlers. A handler is an object implementing the -http.Handler interface. A very common way to write +http.Handler interface. A common way to write a handler is by using the http.HandlerFunc adapter on functions with the appropriate signature.