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/initdaemon.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/initdaemon.go')
| -rw-r--r-- | container/initdaemon.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/container/initdaemon.go b/container/initdaemon.go index 0e631b25..1e58e2ab 100644 --- a/container/initdaemon.go +++ b/container/initdaemon.go @@ -24,8 +24,7 @@ const ( daemonTimeout = 5 * time.Second ) -// Daemon appends an [Op] that starts a daemon in the container and blocks until -// [DaemonOp.Target] appears. +// Daemon is a helper for appending [DaemonOp] to [Ops]. func (f *Ops) Daemon(target, path *check.Absolute, args ...string) *Ops { *f = append(*f, &DaemonOp{target, path, args}) return f |
