From cd9b534d6b1d432d3c997ccc5b14f630afb9dda6 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 28 Feb 2026 20:18:30 +0900 Subject: container: improve documentation This change removes inconsistencies collected over time in this package. Signed-off-by: Ophestra --- container/initremount.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'container/initremount.go') 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 -- cgit v1.3.1