Skip to content

Commit e0737f9

Browse files
committed
Replace "package" with "module" in estimate output where appropriate
1 parent 3f1c7ba commit e0737f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

estimate.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ func estimate(importpath string) error {
230230
log.Printf("%s is already fully packaged in Debian", importpath)
231231
return nil
232232
}
233-
log.Printf("Bringing %s to Debian requires packaging the following Go packages:", importpath)
233+
log.Printf("Bringing %s to Debian requires packaging the following Go modules:", importpath)
234234
for _, line := range lines {
235235
fmt.Println(line)
236236
}
@@ -242,8 +242,8 @@ func execEstimate(args []string) {
242242
fs := flag.NewFlagSet("estimate", flag.ExitOnError)
243243

244244
fs.Usage = func() {
245-
fmt.Fprintf(os.Stderr, "Usage: %s estimate <go-package-importpath>\n", os.Args[0])
246-
fmt.Fprintf(os.Stderr, "Estimates the work necessary to bring <go-package-importpath> into Debian\n"+
245+
fmt.Fprintf(os.Stderr, "Usage: %s estimate <go-module-importpath>\n", os.Args[0])
246+
fmt.Fprintf(os.Stderr, "Estimates the work necessary to bring <go-module-importpath> into Debian\n"+
247247
"by printing all currently unpacked repositories.\n")
248248
fmt.Fprintf(os.Stderr, "Example: %s estimate github.com/Debian/dh-make-golang\n", os.Args[0])
249249
}

0 commit comments

Comments
 (0)