Skip to content

Commit

Permalink
Merge pull request #185 from eduardbosch/feat/readme_grammar_mistakes
Browse files Browse the repository at this point in the history
README Grammar mistakes
  • Loading branch information
srdanrasic authored Mar 28, 2018
2 parents 5ebe9fa + aa366db commit 0adc6d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ At this point you might have the idea how to achieve the behaviour of the `share

### Connectable signals

We have see two kinds of signals so far. A `Signal` that produces events only if the observer is registered and a `Subject` that produces events regardless if there are any observers registered. A connectable signals will be third kind of a signal we will implement. This one will start producing events when we call `connect()` on it. Let us define a protocol first.
We have seen two kinds of signals so far. A `Signal` that produces events only if the observer is registered and a `Subject` that produces events regardless if there are any observers registered. A connectable signal will be the third kind of a signal we will implement. This one will start producing events when we call `connect()` on it. Let us define a protocol first.

```swift
/// Represents a signal that is started by calling `connect` on it.
Expand Down

0 comments on commit 0adc6d3

Please sign in to comment.