feat(#141): validate-docmap subcommand #156

Merged
aweiker merged 3 commits from issue-141 into main 2026-05-15 17:43:05 +00:00
Showing only changes of commit bacb25e029 - Show all commits
+1 -1
View File
@@ -199,7 +199,7 @@ func runValidateDocmap(args []string) int {
staleDocs := checkStaleDocs(cfg, resolvedRoot)
if len(staleDocs) > 0 {
failed = true
fmt.Fprintln(errWriter, "ERROR: stale docmap docs: entries (paths do not exist):")
fmt.Fprintln(errWriter, "ERROR: stale docmap entries (paths do not exist):")
for _, d := range staleDocs {
fmt.Fprintf(errWriter, " %s\n", d)
}