Skip to content

Commit 59883a8

Browse files
committed
Merge branch 'release/0.8.5'
2 parents 3bf6e76 + 54c1710 commit 59883a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

daemon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// license that can be found in the LICENSE file.
44

55
/*
6-
Package daemon 0.8.4 for use with Go (golang) services.
6+
Package daemon 0.8.5 for use with Go (golang) services.
77
88
Package daemon provides primitives for daemonization of golang services.
99
This package is not provide implementation of user daemon,

helper.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var (
2222
// ErrUnsupportedSystem appears if try to use service on system which is not supported by this release
2323
ErrUnsupportedSystem = errors.New("Unsupported system")
2424

25-
// ErrRootPriveleges appears if run installation or deleting the service without root priveleges
25+
// ErrRootPriveleges appears if run installation or deleting the service without root privileges
2626
ErrRootPriveleges = errors.New("You must have root user privileges. Possibly using 'sudo' command should help")
2727

2828
// ErrAlreadyInstalled appears if service already installed on the system
@@ -31,7 +31,7 @@ var (
3131
// ErrNotInstalled appears if try to delete service which was not been installed
3232
ErrNotInstalled = errors.New("Service is not installed")
3333

34-
// ErrAlreadyStopped appears if try to start already running service
34+
// ErrAlreadyRunning appears if try to start already running service
3535
ErrAlreadyRunning = errors.New("Service is already running")
3636

3737
// ErrAlreadyStopped appears if try to stop already stopped service

0 commit comments

Comments
 (0)