Skip to content

Commit 2c0958a

Browse files
authored
Fixed more typos.
1 parent 0d1a24f commit 2c0958a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ A `Signal` may have any arbitrary number of events carrying a value, following b
3434
It is like a frame in a one-time live feed — seas of data frames carry the visual and audio data, but the feed would eventually be terminated with a special frame to indicate "end of stream".
3535

3636
#### `SignalProducer`: deferred work that creates a stream of values.
37-
`SignalProducer` defers work — of which the output is represented as a stream of value — until it is started. For every invocation to start the `SignalProducer`, a new `Signal` is created and the deferred work is subsequently invoked.
37+
`SignalProducer` defers work — of which the output is represented as a stream of values — until it is started. For every invocation to start the `SignalProducer`, a new `Signal` is created and the deferred work is subsequently invoked.
3838

3939
It is like a on-demand streaming service — even though the episode is streamed like a live TV feed, you can choose what you watch, when to start watching and when to interrupt it.
4040

@@ -46,7 +46,7 @@ interrupter.dispose()
4646
```
4747

4848
#### `Property`: an observable box that always holds a value.
49-
`Property` is a variable that can be observed for its changes. In other words, it is a stream of value with a stronger guarantee than `Signal` — the latest value is always available, and the stream would never fail.
49+
`Property` is a variable that can be observed for its changes. In other words, it is a stream of values with a stronger guarantee than `Signal` — the latest value is always available, and the stream would never fail.
5050

5151
It is like the continuously updated current time offset of a video playback — the playback is always at a certain time offset at any time, and it would be updated by the playback logic as the playback continues.
5252

0 commit comments

Comments
 (0)