etcdserver: fix typo in comment

etcdserver: fix typo in comment
This commit is contained in:
KiloG 2022-12-28 18:41:08 +08:00 committed by GitHub
parent ff71968046
commit 101a2a61ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1272,11 +1272,11 @@ func (s *EtcdServer) stopWithDelay(d time.Duration, err error) {
}
}
// StopNotify returns a channel that receives a empty struct
// StopNotify returns a channel that receives an empty struct
// when the server is stopped.
func (s *EtcdServer) StopNotify() <-chan struct{} { return s.done }
// StoppingNotify returns a channel that receives a empty struct
// StoppingNotify returns a channel that receives an empty struct
// when the server is being stopped.
func (s *EtcdServer) StoppingNotify() <-chan struct{} { return s.stopping }