diff options
Diffstat (limited to 'container/initremount.go')
| -rw-r--r-- | container/initremount.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/container/initremount.go b/container/initremount.go index b6d16970..64822914 100644 --- a/container/initremount.go +++ b/container/initremount.go @@ -9,7 +9,7 @@ import ( func init() { gob.Register(new(RemountOp)) } -// Remount appends an [Op] that applies [RemountOp.Flags] on container path [RemountOp.Target]. +// Remount is a helper for appending [RemountOp] to [Ops]. func (f *Ops) Remount(target *check.Absolute, flags uintptr) *Ops { *f = append(*f, &RemountOp{target, flags}) return f |
