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/initdev.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/initdev.go')
| -rw-r--r-- | container/initdev.go | 4 |
1 files changed, 3 insertions, 1 deletions
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 |
