container/path: fix typo "paths"
All checks were successful
Test / Create distribution (push) Successful in 33s
Test / Sandbox (push) Successful in 1m57s
Test / Hakurei (push) Successful in 2m54s
Test / Hpkg (push) Successful in 3m53s
Test / Sandbox (race detector) (push) Successful in 3m57s
Test / Hakurei (race detector) (push) Successful in 4m37s
Test / Flake checks (push) Successful in 1m25s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
Ophestra 2025-08-08 01:32:48 +09:00
parent 534c932906
commit 8da76483e6
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q

View File

@ -103,9 +103,9 @@ func ensureFile(name string, perm, pperm os.FileMode) error {
return err return err
} }
var hostProc = newProcPats(hostPath) var hostProc = newProcPaths(hostPath)
func newProcPats(prefix string) *procPaths { func newProcPaths(prefix string) *procPaths {
return &procPaths{prefix + "/proc", prefix + "/proc/self"} return &procPaths{prefix + "/proc", prefix + "/proc/self"}
} }