From dce4568991a6d012a83f6b322a4f5cbb73b9dcf7 Mon Sep 17 00:00:00 2001 From: Sree Sayi Hrudai <63182223+hrudai2002@users.noreply.github.com> Date: Tue, 10 Oct 2023 15:41:34 +0530 Subject: [PATCH] Update index.adoc - removed duplicate in --- .../3.observables-and-rxjs/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7.reactive-programming-with-rxjs/3.observables-and-rxjs/index.adoc b/7.reactive-programming-with-rxjs/3.observables-and-rxjs/index.adoc index 40916ca..927ba36 100644 --- a/7.reactive-programming-with-rxjs/3.observables-and-rxjs/index.adoc +++ b/7.reactive-programming-with-rxjs/3.observables-and-rxjs/index.adoc @@ -17,7 +17,7 @@ lecture_video: kqxTB7duHTs Streams so far are just a _concept_, an idea. -We link streams together using operators, so in in our previous example the `add` function is an operation, specifically it's an operation which combines two streams to create a third. +We link streams together using operators, so in our previous example the `add` function is an operation, specifically it's an operation which combines two streams to create a third. _Observables_ is a new primitive type which acts as a _blueprint_ for how we want to create streams, subscribe to them, react to new values, and combine streams together to build new ones.