summaryrefslogtreecommitdiff
path: root/marshal.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-09 15:03:05 -0600
committerJeff Carr <[email protected]>2025-01-09 15:03:05 -0600
commitff1721c250420fb4f1ce24f13d2e20721e40a07b (patch)
tree3a61ac908c628077368ad27158746b726f0a5659 /marshal.go
parente725c0cc8011ab6d2c418f83d9b86c7897fabef4 (diff)
compiles again
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, "}")