From 361310ca197bb893760e8d575a3062d8e383742a Mon Sep 17 00:00:00 2001 From: Steve Phillips Date: Mon, 9 Jan 2017 12:49:55 -0800 Subject: [PATCH] http.go: Added missing word from NewHTTPPool docs --- http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.go b/http.go index 14eb345..f37467a 100644 --- a/http.go +++ b/http.go @@ -74,7 +74,7 @@ type HTTPPoolOptions struct { // NewHTTPPool initializes an HTTP pool of peers, and registers itself as a PeerPicker. // For convenience, it also registers itself as an http.Handler with http.DefaultServeMux. -// The self argument be a valid base URL that points to the current server, +// The self argument should be a valid base URL that points to the current server, // for example "http://example.net:8000". func NewHTTPPool(self string) *HTTPPool { p := NewHTTPPoolOpts(self, nil)