From 8858ef8413abebdfa2fd86ae131bbabbc257e8f2 Mon Sep 17 00:00:00 2001 From: Hans Raaf Date: Sat, 15 Mar 2014 00:27:40 +0100 Subject: [PATCH] Fixed comment style. --- service_darwin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_darwin.go b/service_darwin.go index e6a35a8..8095589 100644 --- a/service_darwin.go +++ b/service_darwin.go @@ -112,7 +112,7 @@ func (s *darwinLaunchdService) Warning(format string, a ...interface{}) error { return s.logger.Warning(fmt.Sprintf(format, a...)) } func (s *darwinLaunchdService) Info(format string, a ...interface{}) error { - // on Darwin syslog.log defaults to loggint >= Notice (see /etc/asl.conf) + // On Darwin syslog.log defaults to loggint >= Notice (see /etc/asl.conf). return s.logger.Notice(fmt.Sprintf(format, a...)) }