Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #411 from kaccardi/topic/misspell
Browse files Browse the repository at this point in the history
Fix misspell errors in ciao-launcher and networking.
  • Loading branch information
Tim Pepper authored Jul 27, 2016
2 parents 9139128 + e0a2bd6 commit 0749a39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ciao-launcher/overseer.go
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ func (ovs *overseer) processRemoveCommand(cmd *ovsRemoveCmd) {
}

func (ovs *overseer) processStatusCommand(cmd *ovsStatusCmd) {
glog.Info("Overseer: Recieved Status Command")
glog.Info("Overseer: Received Status Command")
if !ovs.ac.conn.isConnected() {
return
}
Expand All @@ -578,7 +578,7 @@ func (ovs *overseer) processStatusCommand(cmd *ovsStatusCmd) {
}

func (ovs *overseer) processStatsStatusCommand(cmd *ovsStatsStatusCmd) {
glog.Info("Overseer: Recieved StatsStatus Command")
glog.Info("Overseer: Received StatsStatus Command")
if !ovs.ac.conn.isConnected() {
return
}
Expand All @@ -590,7 +590,7 @@ func (ovs *overseer) processStatsStatusCommand(cmd *ovsStatsStatusCmd) {
}

func (ovs *overseer) processStateChangeCommand(cmd *ovsStateChange) {
glog.Infof("Overseer: Recieved State Change %v", *cmd)
glog.Infof("Overseer: Received State Change %v", *cmd)
target := ovs.instances[cmd.instance]
if target != nil {
target.running = cmd.state
Expand Down
2 changes: 1 addition & 1 deletion networking/libsnnet/cn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ func TestNN_Base(t *testing.T) {
assert.Nil(cn.DestroyCnciVnic(cnciVnicCfg2))
assert.Nil(cn.DestroyCnciVnic(cnciVnicCfg))

//Destory again, it should work
//Destroy again, it should work
assert.Nil(cn.DestroyCnciVnic(cnciVnicCfg))
}

Expand Down

0 comments on commit 0749a39

Please sign in to comment.