docs: fix typo in rxjs guide example (#29446)

PR Close #29446
This commit is contained in:
Ricky Roller 2019-03-21 12:48:11 -06:00 committed by Miško Hevery
parent c412374854
commit 531fa00992
1 changed files with 1 additions and 1 deletions

View File

@ -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