Skip to content

Commit c92cb29

Browse files
committed
Try to clearify this point succinctly
1 parent 5f27d48 commit c92cb29

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,13 @@ dog.observe(tv, bowl, doorbell) { image, food, sound in
9595
}
9696
~~~
9797

98-
After starting an observation, the *Observer* must be alive to process updates. There's no awareness after death in memory:
98+
To process updates from an *Observable*, the *Observer* must be alive. There's no awareness after death in memory:
9999

100100
```swift
101101
class Dog: Observer {
102102
init {
103103
observe(Sky.shared) { color in
104-
// for this closure to even be called, this Dog must live
105-
// (irrespective of whether the closure references (weak) self)
104+
// for this closure to be called, this Dog must live
106105
}
107106
}
108107
}

0 commit comments

Comments
 (0)