Skip to content

Commit

Permalink
internal/iana: fix a import comment in code generator.
Browse files Browse the repository at this point in the history
Change-Id: I09adabf07366426451303f72b0f2e6a0869b7508
  • Loading branch information
dsymonds committed Dec 10, 2014
1 parent 8aa6e20 commit cbcac7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/iana/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func main() {
fmt.Fprintf(&bb, "// go generate gen.go\n")
fmt.Fprintf(&bb, "// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT\n\n")
fmt.Fprintf(&bb, "// Package iana provides protocol number resources managed by the Internet Assigned Numbers Authority (IANA).\n")
fmt.Fprintf(&bb, `package iana // import "golang.org/x/net/internal/iana"\n\n`)
fmt.Fprintf(&bb, `package iana // import "golang.org/x/net/internal/iana"`+"\n\n")
for _, r := range registries {
resp, err := http.Get(r.url)
if err != nil {
Expand Down

0 comments on commit cbcac7b

Please sign in to comment.