Merge pull request #90226 from MikeSpreitzer/fix90134

Clarify comment on Watch::ResultChan()
This commit is contained in:
Kubernetes Prow Robot 2020-04-22 09:50:07 -07:00 committed by GitHub
commit b19de7f9b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,8 +32,8 @@ type Interface interface {
Stop()
// Returns a chan which will receive all the events. If an error occurs
// or Stop() is called, this channel will be closed, in which case the
// watch should be completely cleaned up.
// or Stop() is called, the implementation will close this channel and
// release any resources used by the watch.
ResultChan() <-chan Event
}