diff --git a/tools/goctl/model/mongo/readme.md b/tools/goctl/model/mongo/readme.md index 1c19cc933457..8af5e8774cc2 100644 --- a/tools/goctl/model/mongo/readme.md +++ b/tools/goctl/model/mongo/readme.md @@ -57,7 +57,7 @@ func NewUserModel(url, db, collection string, c cache.CacheConf) UserModel { #### usermodelgen.go ```go -// Code generated by goctl. DO NOT EDIT! +// Code generated by goctl. DO NOT EDIT. package model import ( diff --git a/tools/goctl/model/mongo/template/model.tpl b/tools/goctl/model/mongo/template/model.tpl index 9265d13fdf18..31fab61094c5 100644 --- a/tools/goctl/model/mongo/template/model.tpl +++ b/tools/goctl/model/mongo/template/model.tpl @@ -1,4 +1,4 @@ -// Code generated by goctl. DO NOT EDIT! +// Code generated by goctl. DO NOT EDIT. package model import ( diff --git a/tools/goctl/util/head.go b/tools/goctl/util/head.go index 117767cf9480..017e344bea6e 100644 --- a/tools/goctl/util/head.go +++ b/tools/goctl/util/head.go @@ -2,7 +2,7 @@ package util const ( // DoNotEditHead added to the beginning of a file to prompt the user not to edit - DoNotEditHead = "// Code generated by goctl. DO NOT EDIT!" + DoNotEditHead = "// Code generated by goctl. DO NOT EDIT." headTemplate = DoNotEditHead + ` // Source: {{.source}}`