summaryrefslogtreecommitdiff
path: root/doWITCOM.go
diff options
context:
space:
mode:
Diffstat (limited to 'doWITCOM.go')
-rw-r--r--doWITCOM.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/doWITCOM.go b/doWITCOM.go
index c68408a..ecfa409 100644
--- a/doWITCOM.go
+++ b/doWITCOM.go
@@ -28,8 +28,6 @@ func doWITCOM() {
}
// add a common header for WIT files
-// add a common header for WIT files
-
func addCommonHeader(filename string) error {
// read in the .proto file
data, err := os.ReadFile(filename)
@@ -66,7 +64,8 @@ func addCommonHeader(filename string) error {
// print the header once
if !done {
newfile += fmt.Sprintln("// Copyright 2017-2025 WIT.COM Inc. All rights reserved.")
- newfile += fmt.Sprintln("// Use of this source code is governed by the GPL 3.0")
+ // todo, verify LICENSE file is GPL 3.0 here
+ newfile += fmt.Sprintln("// Use of this source code is governed by the GPL")
newfile += fmt.Sprintln("")
done = true
}