fix spelling
This commit is contained in:
parent
85a8ba23bd
commit
ce7d138c60
3 changed files with 3 additions and 3 deletions
2
Makefile
2
Makefile
|
|
@ -39,7 +39,7 @@ golint:
|
||||||
$(GOPATH)/bin/golint .
|
$(GOPATH)/bin/golint .
|
||||||
|
|
||||||
misspell:
|
misspell:
|
||||||
$(GOPATH)/bin/misspell pkg/* cmd/* Makefile README.md
|
$(GOPATH)/bin/misspell pkg/* cmd/* Makefile README.md vipman.yaml
|
||||||
|
|
||||||
test:
|
test:
|
||||||
ifeq ($(shell go env GOARCH), $(shell go env GOHOSTARCH))
|
ifeq ($(shell go env GOARCH), $(shell go env GOHOSTARCH))
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ func (f *fsm) Apply(l *raft.Log) interface{} {
|
||||||
case DELETE:
|
case DELETE:
|
||||||
f.applyDelete(c.K)
|
f.applyDelete(c.K)
|
||||||
default:
|
default:
|
||||||
panic(fmt.Sprintf("unrecognized command op: %s", c.Op))
|
panic(fmt.Sprintf("unrecognized command op: %d", c.Op))
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// +build linux
|
// +build linux
|
||||||
|
|
||||||
// These syscalls are only supported on Linux, so this uses a build directive during compilation. Other OS's will use the arp_unsupported.go and recieve an error
|
// These syscalls are only supported on Linux, so this uses a build directive during compilation. Other OS's will use the arp_unsupported.go and receive an error
|
||||||
|
|
||||||
package vip
|
package vip
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue