summaryrefslogtreecommitdiff
path: root/libgo/go/net/http/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/net/http/http.go')
-rw-r--r--libgo/go/net/http/http.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/net/http/http.go b/libgo/go/net/http/http.go
index e5d59e14120..3510fe604d0 100644
--- a/libgo/go/net/http/http.go
+++ b/libgo/go/net/http/http.go
@@ -11,7 +11,7 @@ import (
"time"
"unicode/utf8"
- "internal/x/net/http/httpguts"
+ "golang.org/x/net/http/httpguts"
)
// maxInt64 is the effective "infinite" value for the Server and
@@ -19,7 +19,7 @@ import (
const maxInt64 = 1<<63 - 1
// aLongTimeAgo is a non-zero time, far in the past, used for
-// immediate cancelation of network operations.
+// immediate cancellation of network operations.
var aLongTimeAgo = time.Unix(1, 0)
// TODO(bradfitz): move common stuff here. The other files have accumulated