From 5f5973d2a1734baa856493236dcf5d82eec3decc Mon Sep 17 00:00:00 2001 From: Ben Hoyt Date: Fri, 8 Nov 2024 12:18:39 +1300 Subject: [PATCH] chore(client): fix typo in AutoStart doc comment (#515) Just a typo fix. --- client/services.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/services.go b/client/services.go index 0143cf62..0deb4271 100644 --- a/client/services.go +++ b/client/services.go @@ -27,7 +27,7 @@ type ServiceOptions struct { Names []string } -// AutoStart starts the services makes as "startup: enabled". opts.Names must +// AutoStart starts the services marked as "startup: enabled". opts.Names must // be empty for this call. func (client *Client) AutoStart(opts *ServiceOptions) (changeID string, err error) { changeID, err = client.doMultiServiceAction("autostart", opts.Names)