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/initdev.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'container/initdev.go') diff --git a/container/initdev.go b/container/initdev.go index 50df680b..1ce722cb 100644 --- a/container/initdev.go +++ b/container/initdev.go @@ -19,7 +19,9 @@ func (f *Ops) Dev(target *check.Absolute, mqueue bool) *Ops { } // DevWritable appends an [Op] that mounts a writable subset of host /dev. -// There is usually no good reason to write to /dev, so this should always be followed by a [RemountOp]. +// +// There is usually no good reason to write to /dev, so this should always be +// followed by a [RemountOp]. func (f *Ops) DevWritable(target *check.Absolute, mqueue bool) *Ops { *f = append(*f, &MountDevOp{target, mqueue, true}) return f -- cgit v1.3.1