Neaten some comments (#1973)

* comment-neaten

* comment-neaten

* more
This commit is contained in:
John Kerl 2026-02-16 13:38:49 -05:00 committed by GitHub
parent 077cbf0d96
commit a3b5d25933
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
144 changed files with 0 additions and 616 deletions

View file

@ -7,7 +7,6 @@ import (
"os"
)
// ----------------------------------------------------------------
func main() {
args := os.Args[1:]
@ -26,7 +25,6 @@ func main() {
}
}
// ----------------------------------------------------------------
func handle(fileName string) (ok bool) {
inputStream := os.Stdin
if fileName != "-" {

View file

@ -7,7 +7,6 @@ import (
"os"
)
// ----------------------------------------------------------------
func main() {
args := os.Args[1:]
@ -26,7 +25,6 @@ func main() {
}
}
// ----------------------------------------------------------------
func handle(fileName string) (ok bool) {
inputStream := os.Stdin
if fileName != "-" {

View file

@ -9,7 +9,6 @@ import (
"strings"
)
// ----------------------------------------------------------------
func main() {
includeFields := strings.Split(os.Args[1], ",")
filenames := os.Args[2:]
@ -29,7 +28,6 @@ func main() {
}
}
// ----------------------------------------------------------------
func handle(fileName string, includeFields []string) (ok bool) {
inputStream := os.Stdin
if fileName != "-" {