diff --git a/daemon_darwin.go b/daemon_darwin.go index 162d191..631b5a6 100644 --- a/daemon_darwin.go +++ b/daemon_darwin.go @@ -59,7 +59,7 @@ func (darwin *darwinRecord) checkRunning() (string, bool) { } } - return "Service is stoped", false + return "Service is stopped", false } // Install the service diff --git a/daemon_linux_systemd.go b/daemon_linux_systemd.go index 063db81..46a4c77 100644 --- a/daemon_linux_systemd.go +++ b/daemon_linux_systemd.go @@ -47,7 +47,7 @@ func (linux *systemDRecord) checkRunning() (string, bool) { } } - return "Service is stoped", false + return "Service is stopped", false } // Install the service diff --git a/daemon_linux_systemv.go b/daemon_linux_systemv.go index ef6a4ed..c59e4c0 100644 --- a/daemon_linux_systemv.go +++ b/daemon_linux_systemv.go @@ -47,7 +47,7 @@ func (linux *systemVRecord) checkRunning() (string, bool) { } } - return "Service is stoped", false + return "Service is stopped", false } // Install the service