raft: fix malformed example name

It is reported by latest govet:
```
gopath/src/github.com/coreos/etcd/raft/example_test.go:26: Example_Node
has malformed example suffix: Node
```
This commit is contained in:
Yicheng Qin
2015-10-20 16:39:29 -07:00
parent de669be6d6
commit 01806c3e80

View File

@ -23,7 +23,7 @@ func sendMessages(msgs []pb.Message) {}
func saveStateToDisk(st pb.HardState) {}
func saveToDisk(ents []pb.Entry) {}
func Example_Node() {
func ExampleNode() {
c := &Config{}
n := StartNode(c, nil)