diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-02-28 20:18:30 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-02-28 20:18:30 +0900 |
| commit | cd9b534d6b1d432d3c997ccc5b14f630afb9dda6 (patch) | |
| tree | fcf2e26356d614bb081e94285a1a8eb19cb8283c /container/initproc.go | |
| parent | 84e6922f3073ec09756df6075a801529ecd202f6 (diff) | |
container: improve documentation
This change removes inconsistencies collected over time in this package.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/initproc.go')
| -rw-r--r-- | container/initproc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/container/initproc.go b/container/initproc.go index 3ecb270a..42b519d7 100644 --- a/container/initproc.go +++ b/container/initproc.go @@ -10,7 +10,7 @@ import ( func init() { gob.Register(new(MountProcOp)) } -// Proc appends an [Op] that mounts a private instance of proc. +// Proc is a helper for appending [MountProcOp] to [Ops]. func (f *Ops) Proc(target *check.Absolute) *Ops { *f = append(*f, &MountProcOp{target}) return f |
