Skip to content

Commit

Permalink
fix: Grammar mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardbosch authored Mar 28, 2018
1 parent 5ebe9fa commit aa366db
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 aa366db

Please sign in to comment.