Skip to content

Commit 56c7f8f

Browse files
ilivestrongjamesdaniels
authored andcommitted
docs(): typo fix (angular#1470)
typo fix
1 parent 136f1e5 commit 56c7f8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rtdb/querying-lists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ To enable dynamic queries one should lean on RxJS Operators like `switchMap`.
5151

5252
An RxJS Subject is imported below. A Subject is like an Observable, but can multicast to many Observers. Subjects are like EventEmitters: they maintain a registry of many listeners. See, [What is a Subject](http://reactivex.io/rxjs/manual/overview.html#subject) for more information.
5353

54-
When we call [`switchMap` on the Subject](https://www.learnrxjs.io/operators/transformation/switchmap.html), we cap map each value to a new Observable; in this case a database query.
54+
When we call [`switchMap` on the Subject](https://www.learnrxjs.io/operators/transformation/switchmap.html), we can map each value to a new Observable; in this case a database query.
5555

5656
```ts
5757
const size$ = new Subject<string>();

0 commit comments

Comments
 (0)