Clarify Interface.Start() documentation comment (#179)

This commit is contained in:
Jakob Borg
2020-06-07 20:43:39 +02:00
committed by GitHub
parent f6135ae0e8
commit f5ff0fc585
+1 -1
View File
@@ -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