diff --git a/main.go b/main.go index 841fc1a..1e48609 100644 --- a/main.go +++ b/main.go @@ -181,8 +181,8 @@ func (cfg *Config) process() (code []byte, err error) { } } - // Generate and format the output. - // Use goimports to format the source because it separates imports. + // Generate and format the output. Formatting uses goimports because it + // removes unused imports. code = genPackage(mtyp) opt := &imports.Options{Comments: true, TabIndent: true, TabWidth: 8} code, err = imports.Process("", code, opt)