From fdc0f98c0f379c23a996480dc33db04cd69be626 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Fri, 18 Apr 2025 21:29:42 +0000 Subject: [PATCH] docs: update typo --- cmd/readmevalidation/repoStructure.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/readmevalidation/repoStructure.go b/cmd/readmevalidation/repoStructure.go index 6e68f4a8..164547fd 100644 --- a/cmd/readmevalidation/repoStructure.go +++ b/cmd/readmevalidation/repoStructure.go @@ -38,10 +38,10 @@ func validateCoderResourceSubdirectory(dirPath string) []error { return errs } for _, f := range files { - // The .coder file is sometimes generated as part of Bun tests. These - // directories will never be committed to the repo, but in the off - // chance that they don't get cleaned up properly, we want to skip over - // them + // The .coder subdirectories are sometimes generated as part of Bun + // tests. These subdirectories will never be committed to the repo, but + // in the off chance that they don't get cleaned up properly, we want to + // skip over them if !f.IsDir() || f.Name() == ".coder" { continue }