From aa366db46b3328bb9a4f10382ef0418171430db2 Mon Sep 17 00:00:00 2001 From: Eduard Bosch Bertran Date: Wed, 28 Mar 2018 15:00:10 +0200 Subject: [PATCH] fix: Grammar mistakes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7883b7f..d936a49 100644 --- a/README.md +++ b/README.md @@ -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.