summaryrefslogtreecommitdiff
path: root/marshal.go
diff options
context:
space:
mode:
Diffstat (limited to 'marshal.go')
-rw-r--r--marshal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/marshal.go b/marshal.go
index 43d8c14..9709d5a 100644
--- a/marshal.go
+++ b/marshal.go
@@ -52,7 +52,7 @@ func marshalThing(w io.Writer, thing string) {
fmt.Fprintln(w, "")
fmt.Fprintln(w, "// apparently this isn't stable, but it's awesomely better")
fmt.Fprintln(w, "// https://protobuf.dev/reference/go/faq/#unstable-text")
- fmt.Fprintln(w, "// it's so great for config files, I'm using it by default to try to fix the problems with it")
+ fmt.Fprintln(w, "// it's brilliant for config files!")
fmt.Fprintln(w, "func (v *"+thing+") FormatTEXT() string {")
fmt.Fprintln(w, " return prototext.Format(v)")
fmt.Fprintln(w, "}")