mirror of
https://github.com/golang/go
synced 2024-11-23 16:20:04 -07:00
cmd/internal/obj: follow convention for generated code comment
Follow the convertion (https://golang.org/s/generatedcode) for generated code in stringer.go. Change-Id: I7b5fbb04ba03e8ac77a9a0a402088669469de858 Reviewed-on: https://go-review.googlesource.com/122015 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
parent
9a97a2aae9
commit
2ee6bfbd7e
@ -1,5 +1,4 @@
|
||||
// Generated by stringer -i a.out.go -o anames.go -p arm
|
||||
// Do not edit.
|
||||
// Code generated by stringer -i a.out.go -o anames.go -p arm; DO NOT EDIT.
|
||||
|
||||
package arm
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
// Generated by stringer -i a.out.go -o anames.go -p arm64
|
||||
// Do not edit.
|
||||
// Code generated by stringer -i a.out.go -o anames.go -p arm64; DO NOT EDIT.
|
||||
|
||||
package arm64
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
// Generated by stringer -i a.out.go -o anames.go -p mips
|
||||
// Do not edit.
|
||||
// Code generated by stringer -i a.out.go -o anames.go -p mips; DO NOT EDIT.
|
||||
|
||||
package mips
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
// Generated by stringer -i a.out.go -o anames.go -p ppc64
|
||||
// Do not edit.
|
||||
// Code generated by stringer -i a.out.go -o anames.go -p ppc64; DO NOT EDIT.
|
||||
|
||||
package ppc64
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
// Generated by stringer -i a.out.go -o anames.go -p s390x
|
||||
// Do not edit.
|
||||
// Code generated by stringer -i a.out.go -o anames.go -p s390x; DO NOT EDIT.
|
||||
|
||||
package s390x
|
||||
|
||||
|
@ -93,8 +93,7 @@ func main() {
|
||||
}
|
||||
}
|
||||
|
||||
const header = `// Generated by stringer -i %s -o %s -p %s
|
||||
// Do not edit.
|
||||
const header = `// Code generated by stringer -i %s -o %s -p %s; DO NOT EDIT.
|
||||
|
||||
package %s
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
// Generated by stringer -i a.out.go -o anames.go -p wasm
|
||||
// Do not edit.
|
||||
// Code generated by stringer -i a.out.go -o anames.go -p wasm; DO NOT EDIT.
|
||||
|
||||
package wasm
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
// Generated by stringer -i aenum.go -o anames.go -p x86
|
||||
// Do not edit.
|
||||
// Code generated by stringer -i aenum.go -o anames.go -p x86; DO NOT EDIT.
|
||||
|
||||
package x86
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user