docs: update typo

This commit is contained in:
Michael Smith 2025-04-18 21:29:42 +00:00
parent eea1e059f0
commit fdc0f98c0f

View File

@ -38,10 +38,10 @@ func validateCoderResourceSubdirectory(dirPath string) []error {
return errs return errs
} }
for _, f := range files { for _, f := range files {
// The .coder file is sometimes generated as part of Bun tests. These // The .coder subdirectories are sometimes generated as part of Bun
// directories will never be committed to the repo, but in the off // tests. These subdirectories will never be committed to the repo, but
// chance that they don't get cleaned up properly, we want to skip over // in the off chance that they don't get cleaned up properly, we want to
// them // skip over them
if !f.IsDir() || f.Name() == ".coder" { if !f.IsDir() || f.Name() == ".coder" {
continue continue
} }