From bfd3d81b92fc1c1e526cadeefbde254bb6d6c191 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 5 Mar 2011 15:43:26 -0800 Subject: [PATCH] httptest: fix docs out-of-sync from earlier renaming R=rh CC=golang-dev https://golang.org/cl/4239060 --- src/pkg/http/httptest/server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pkg/http/httptest/server.go b/src/pkg/http/httptest/server.go index 5c5c746743d..86c9eb43535 100644 --- a/src/pkg/http/httptest/server.go +++ b/src/pkg/http/httptest/server.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Implementation of TempServer +// Implementation of Server package httptest @@ -36,7 +36,7 @@ func NewServer(handler http.Handler) *Server { return ts } -// Close shuts down the temporary server. +// Close shuts down the server. func (s *Server) Close() { s.Listener.Close() }