From 71a035914f99bb58fe82eac0f1289f10963d876c Mon Sep 17 00:00:00 2001 From: Mike Appleby Date: Mon, 12 Sep 2016 16:59:12 -0500 Subject: [PATCH] x/net/http2: Fix various typos in doc comments. Change-Id: I1530dadf32cc85c25dc7c88b4e7b6ebbbbcb2d3a Reviewed-on: https://go-review.googlesource.com/29241 Reviewed-by: Brad Fitzpatrick --- http2/frame.go | 2 +- http2/hpack/hpack.go | 2 +- http2/http2.go | 2 +- http2/z_spec_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/http2/frame.go b/http2/frame.go index c9b09bb6..b0c79b01 100644 --- a/http2/frame.go +++ b/http2/frame.go @@ -737,7 +737,7 @@ func (f *Framer) WriteSettings(settings ...Setting) error { return f.endWrite() } -// WriteSettings writes an empty SETTINGS frame with the ACK bit set. +// WriteSettingsAck writes an empty SETTINGS frame with the ACK bit set. // // It will perform exactly one Write to the underlying Writer. // It is the caller's responsibility to not call other Write methods concurrently. diff --git a/http2/hpack/hpack.go b/http2/hpack/hpack.go index 8aa197ad..135b9f62 100644 --- a/http2/hpack/hpack.go +++ b/http2/hpack/hpack.go @@ -57,7 +57,7 @@ func (hf HeaderField) String() string { return fmt.Sprintf("header field %q = %q%s", hf.Name, hf.Value, suffix) } -// Size returns the size of an entry per RFC 7540 section 5.2. +// Size returns the size of an entry per RFC 7541 section 4.1. func (hf HeaderField) Size() uint32 { // http://http2.github.io/http2-spec/compression.html#rfc.section.4.1 // "The size of the dynamic table is the sum of the size of diff --git a/http2/http2.go b/http2/http2.go index ab43a095..2e27b093 100644 --- a/http2/http2.go +++ b/http2/http2.go @@ -343,7 +343,7 @@ func (s *sorter) Keys(h http.Header) []string { } func (s *sorter) SortStrings(ss []string) { - // Our sorter works on s.v, which sorter owners, so + // Our sorter works on s.v, which sorter owns, so // stash it away while we sort the user's buffer. save := s.v s.v = ss diff --git a/http2/z_spec_test.go b/http2/z_spec_test.go index 0590cfde..610b2cdb 100644 --- a/http2/z_spec_test.go +++ b/http2/z_spec_test.go @@ -311,7 +311,7 @@ func TestSpecCoverage(t *testing.T) { t.Errorf("\tSECTION %s: %s", p.section, p.sentence) } - t.Logf("%d/%d (%d%%) sentances covered", complete, total, (complete/total)*100) + t.Logf("%d/%d (%d%%) sentences covered", complete, total, (complete/total)*100) } func attrSig(se xml.StartElement) string {