Index: mstate/watcher/watcher.go |
=== modified file 'mstate/watcher/watcher.go' |
--- mstate/watcher/watcher.go 2012-09-10 16:19:57 +0000 |
+++ mstate/watcher/watcher.go 2012-09-11 13:58:35 +0000 |
@@ -97,10 +97,9 @@ |
return w.tomb.Wait() |
} |
-// Dying returns a channel that is closed when the watcher is stopping |
-// due to an error or because Stop was called explicitly. |
-func (w *Watcher) Dying() <-chan struct{} { |
- return w.tomb.Dying() |
+// Dead returns a channel that is closed when the watcher has stopped. |
+func (w *Watcher) Dead() <-chan struct{} { |
+ return w.tomb.Dead() |
} |
// Err returns the error with which the watcher stopped. |