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.