diff --git a/daemon.go b/daemon.go index 7daaffc..7c9919b 100644 --- a/daemon.go +++ b/daemon.go @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. /* -Package daemon 0.8.4 for use with Go (golang) services. +Package daemon 0.8.5 for use with Go (golang) services. Package daemon provides primitives for daemonization of golang services. This package is not provide implementation of user daemon, diff --git a/helper.go b/helper.go index cbb29ae..da9efea 100644 --- a/helper.go +++ b/helper.go @@ -22,7 +22,7 @@ var ( // ErrUnsupportedSystem appears if try to use service on system which is not supported by this release ErrUnsupportedSystem = errors.New("Unsupported system") - // ErrRootPriveleges appears if run installation or deleting the service without root priveleges + // ErrRootPriveleges appears if run installation or deleting the service without root privileges ErrRootPriveleges = errors.New("You must have root user privileges. Possibly using 'sudo' command should help") // ErrAlreadyInstalled appears if service already installed on the system @@ -31,7 +31,7 @@ var ( // ErrNotInstalled appears if try to delete service which was not been installed ErrNotInstalled = errors.New("Service is not installed") - // ErrAlreadyStopped appears if try to start already running service + // ErrAlreadyRunning appears if try to start already running service ErrAlreadyRunning = errors.New("Service is already running") // ErrAlreadyStopped appears if try to stop already stopped service