git » go-net » commit e4306e4

http2/hpack: fix a typo

author Mikio Hara
2016-04-11 10:07:18 UTC
committer Mikio Hara
2016-04-11 18:41:01 UTC
parent e45385e9b226f570b1f086bf287b25d3d4117776

http2/hpack: fix a typo

Change-Id: I18cc9536444f3112f677f1439a114efe65faf51e
Reviewed-on: https://go-review.googlesource.com/21831
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>

http2/hpack/hpack.go +1 -1

diff --git a/http2/hpack/hpack.go b/http2/hpack/hpack.go
index dcf257a..8aa197a 100644
--- a/http2/hpack/hpack.go
+++ b/http2/hpack/hpack.go
@@ -43,7 +43,7 @@ type HeaderField struct {
 
 // IsPseudo reports whether the header field is an http2 pseudo header.
 // That is, it reports whether it starts with a colon.
-// It is not otherwise guaranteed to be a valid psuedo header field,
+// It is not otherwise guaranteed to be a valid pseudo header field,
 // though.
 func (hf HeaderField) IsPseudo() bool {
 	return len(hf.Name) != 0 && hf.Name[0] == ':'