Skip to content

Commit

Permalink
Merge pull request #8 from Sheile/feature/fix-status-typo
Browse files Browse the repository at this point in the history
Fix typo in status
  • Loading branch information
takama committed Jun 25, 2015
2 parents e5fd25b + 9802465 commit 99fd5b4
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 99fd5b4

Please sign in to comment.