From 531fa00992436a385c0d6b3f9c7c04d7520be436 Mon Sep 17 00:00:00 2001 From: Ricky Roller Date: Thu, 21 Mar 2019 12:48:11 -0600 Subject: [PATCH] docs: fix typo in rxjs guide example (#29446) PR Close #29446 --- aio/content/examples/rx-library/src/operators.1.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/examples/rx-library/src/operators.1.ts b/aio/content/examples/rx-library/src/operators.1.ts index 1949dfe47d..be37217d9d 100644 --- a/aio/content/examples/rx-library/src/operators.1.ts +++ b/aio/content/examples/rx-library/src/operators.1.ts @@ -15,7 +15,7 @@ const squareOddVals = pipe( // Create an Observable that will run the filter and map functions const squareOdd = squareOddVals(nums); -// Suscribe to run the combined functions +// Subscribe to run the combined functions squareOdd.subscribe(x => console.log(x)); // #enddocregion