From ded075a79cc3e5d01c6aa115400805528aba7d21 Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Wed, 9 Sep 2020 08:36:54 -0400 Subject: [PATCH] docs: add missing space (#38759) This commit adds a missing space after the comma in listing the rxjs operators section. PR Close #38759 --- aio/content/guide/rx-library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/rx-library.md b/aio/content/guide/rx-library.md index 8aed26dcce..9e29683a58 100644 --- a/aio/content/guide/rx-library.md +++ b/aio/content/guide/rx-library.md @@ -53,7 +53,7 @@ RxJS provides many operators, but only a handful are used frequently. For a list | Area | Operators | | :------------| :----------| -| Creation | `from`,`fromEvent`, `of` | +| Creation | `from`, `fromEvent`, `of` | | Combination | `combineLatest`, `concat`, `merge`, `startWith` , `withLatestFrom`, `zip` | | Filtering | `debounceTime`, `distinctUntilChanged`, `filter`, `take`, `takeUntil` | | Transformation | `bufferTime`, `concatMap`, `map`, `mergeMap`, `scan`, `switchMap` |