Skip to content

Commit

Permalink
Fix small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adriacidre committed Oct 10, 2016
1 parent ce64493 commit 7f1bdf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_router.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type Router struct {
func (n *Router) Handle(subject string, components []interface{}, lines []Message) []Message {
switch subject {
case "routers.create":
lines = append(lines, Message{Body: "Creating firewall:", Level: "INFO"})
lines = append(lines, Message{Body: "Creating router:", Level: "INFO"})
case "routers.create.done":
lines = n.getDetails(components)
return append(lines, Message{Body: "Routers created", Level: "INFO"})
Expand Down

0 comments on commit 7f1bdf8

Please sign in to comment.