Update the code-gen warning text

This commit is contained in:
joeduffy 2017-04-28 11:35:33 -07:00
parent 2d109f736c
commit 42ce8744ce

View file

@ -23,7 +23,7 @@ func writefmtln(w *bufio.Writer, msg string, args ...interface{}) {
// emitHeaderWarning emits the standard "WARNING" into a generated file.
func emitHeaderWarning(w *bufio.Writer) {
writefmtln(w, "// *** WARNING: this file was generated by the Coconut IDL Compiler (CIDLC). ***")
writefmtln(w, "// *** Do not edit by hand unless you are taking matters into your own hands! ***")
writefmtln(w, "// *** Do not edit by hand unless you're certain you know what you are doing! ***")
writefmtln(w, "")
}