Skip to content

Commit

Permalink
Fix typo in status
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheile committed Jun 25, 2015
1 parent e5fd25b commit 9802465
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion daemon_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func (darwin *darwinRecord) checkRunning() (string, bool) {
}
}

return "Service is stoped", false
return "Service is stopped", false
}

// Install the service
Expand Down
2 changes: 1 addition & 1 deletion daemon_linux_systemd.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (linux *systemDRecord) checkRunning() (string, bool) {
}
}

return "Service is stoped", false
return "Service is stopped", false
}

// Install the service
Expand Down
2 changes: 1 addition & 1 deletion daemon_linux_systemv.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (linux *systemVRecord) checkRunning() (string, bool) {
}
}

return "Service is stoped", false
return "Service is stopped", false
}

// Install the service
Expand Down

0 comments on commit 9802465

Please sign in to comment.