container/path: fix typo "paths"

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

View File

@@ -103,9 +103,9 @@ func ensureFile(name string, perm, pperm os.FileMode) error {
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"}
}