~emersion/gqlclient

0c53449cf76cb318a2147ffd2a44439b5ce7c235 — Thorben Günther 1 year, 5 months ago 23b9305
gqlclientgen: Fix comment that indicates that code is generated

The period is missing at the end for the regex to match correctly.
See: https://godocs.io/cmd/go#hdr-Generate_Go_files_by_processing_source
1 files changed, 1 insertions(+), 1 deletions(-)

M cmd/gqlclientgen/main.go
M cmd/gqlclientgen/main.go => cmd/gqlclientgen/main.go +1 -1
@@ 402,7 402,7 @@ func main() {
	}

	f := jen.NewFile(pkgName)
	f.HeaderComment("Code generated by gqlclientgen - DO NOT EDIT")
	f.HeaderComment("Code generated by gqlclientgen - DO NOT EDIT.")

	var typeNames []string
	for _, def := range schema.Types {