Skip to content

Commit 2cb86e8

Browse files
authored
Merge pull request #485 from keitaito/keitaito-patch-3
Fix typo and link in documentation
2 parents 87496f1 + 00edc04 commit 2cb86e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Documentation/APIContracts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ everything added to the [`CompositeDisposable`][CompositeDisposable] in
314314
Note that disposing of one produced `Signal` will not affect other signals created
315315
by the same `SignalProducer`.
316316

317-
## The Property contract.
317+
## The Property contract
318318

319319
A property is essentially a `Signal` which guarantees it has an initial value, and its latest value is always available for being read out.
320320

Documentation/ReactivePrimitives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A `Signal` may have any arbitrary number of events carrying a value, following b
2525

2626
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".
2727

28-
*See also: [The `Event` overview](FrameworkOverview.md#events), [The `Signal` contract](APIContracts.md#the-event-contract), [The `Event` API reference](http://reactivecocoa.io/reactiveswift/docs/latest/Enums/Event.html)*
28+
*See also: [The `Event` overview](FrameworkOverview.md#events), [The `Event` contract](APIContracts.md#the-event-contract), [The `Event` API reference](http://reactivecocoa.io/reactiveswift/docs/latest/Classes/Signal/Event.html)*
2929

3030
#### `SignalProducer`: deferred work that creates a stream of values.
3131
`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.

0 commit comments

Comments
 (0)