Skip to content

Commit

Permalink
Merge pull request #36 from ernestio/b-output-fix-460
Browse files Browse the repository at this point in the history
Fixes #460
  • Loading branch information
adriacidre authored May 9, 2017
2 parents 37ce5ee + e4f2fef commit f5886ba
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 f5886ba

Please sign in to comment.