From f5ff0fc58524a5006eb4bfb16dffb54eba72c4a6 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Sun, 7 Jun 2020 20:43:39 +0200 Subject: [PATCH] Clarify Interface.Start() documentation comment (#179) --- service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.go b/service.go index 3e7750de..94f271e4 100644 --- a/service.go +++ b/service.go @@ -310,7 +310,7 @@ type System interface { // 8. Service.Run returns. // 9. User program should quickly exit. type Interface interface { - // Start provides a place to initiate the service. The service doesn't not + // Start provides a place to initiate the service. The service doesn't // signal a completed start until after this function returns, so the // Start function must not take more then a few seconds at most. Start(s Service) error