Commit a680a1ef authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

http2: fix typo in comment

Change-Id: If08e7b6133a2458547598cd45ba591ab091cf03f
Reviewed-on: https://go-review.googlesource.com/125035Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent 179114c9
......@@ -762,7 +762,7 @@ func (f *SettingsFrame) HasDuplicates() bool {
return false
}
// If it's small enough (the common case), just do the n^2
// thing and a map allocation.
// thing and avoid a map allocation.
if num < 10 {
for i := 0; i < num; i++ {
idi := f.Setting(i).ID
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment