git » go-net » commit 7c62cfd

http2: add missing import path declaration

author Brad Fitzpatrick
2016-08-04 20:59:57 UTC
committer Brad Fitzpatrick
2016-08-04 21:33:21 UTC
parent 57bfaa875b96fb91b4766077f34470528d4b03e9

http2: add missing import path declaration

Change-Id: Ic37b6b84bfc695cfb1ca7cf8e7da52c801e6d236
Reviewed-on: https://go-review.googlesource.com/25500
Reviewed-by: Chris Broadfoot <cbro@golang.org>

http2/http2.go +2 -1

diff --git a/http2/http2.go b/http2/http2.go
index 0173aed..f06e87b 100644
--- a/http2/http2.go
+++ b/http2/http2.go
@@ -13,7 +13,8 @@
 // See https://http2.github.io/ for more information on HTTP/2.
 //
 // See https://http2.golang.org/ for a test server running this code.
-package http2
+//
+package http2 // import "golang.org/x/net/http2"
 
 import (
 	"bufio"