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/initdaemon.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'container/initdaemon.go') 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 -- cgit v1.3.1