From f2daf55bbc2cf9e858de2cb880eac8d347cde55e Mon Sep 17 00:00:00 2001 From: "K.W.H.J. van der Kamp" Date: Sat, 29 May 2021 08:35:56 +0200 Subject: [PATCH] Update collections.md Typo --- docs/firestore/collections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/firestore/collections.md b/docs/firestore/collections.md index 929d6f301..c5c458b7b 100644 --- a/docs/firestore/collections.md +++ b/docs/firestore/collections.md @@ -260,7 +260,7 @@ export class AppComponent { ### Limiting events -There are three `DocumentChangeType`s in Firestore: `added`, `removed`, and `modified`. Each streaming method listens to all three by default. However, you may only be intrested in one of these events. You can specify which events you'd like to use through the first parameter of each method: +There are three `DocumentChangeType`s in Firestore: `added`, `removed`, and `modified`. Each streaming method listens to all three by default. However, you may only be interested in one of these events. You can specify which events you'd like to use through the first parameter of each method: #### Basic example