Skip to content

Commit

Permalink
Fixes #460
Browse files Browse the repository at this point in the history
  • Loading branch information
g3kk0 committed May 9, 2017
1 parent 37ce5ee commit e4f2fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type Service struct {
func (n *Service) Handle(subject string, lines []Message) []Message {
switch subject {
case "service.create":
lines = append(lines, Message{Body: "Applying you definition", Level: "INFO"})
lines = append(lines, Message{Body: "Applying your definition", Level: "INFO"})
case "service.delete":
lines = append(lines, Message{Body: "Starting environment deletion", Level: "INFO"})
case "service.create.done":
Expand Down

0 comments on commit e4f2fef

Please sign in to comment.