Browse Source

update package comment

Brad Fitzpatrick 11 years ago
parent
commit
e4fab6e5bc
1 changed files with 7 additions and 1 deletions
  1. 7 1
      http2.go

+ 7 - 1
http2.go

@@ -7,7 +7,13 @@
 
 
 // Package http2 implements the HTTP/2 protocol.
 // Package http2 implements the HTTP/2 protocol.
 //
 //
-// It currently targets draft-14. See http://http2.github.io/
+// This is a work in progress. This package is low-level and intended
+// to be used directly by very few people. Most users will use it
+// indirectly through integration with the net/http package. See
+// ConfigureServer. That ConfigureServer call will likely be automatic
+// or available via an empty import in the future.
+//
+// This package currently targets draft-14. See http://http2.github.io/
 package http2
 package http2
 
 
 import (
 import (