Skip to content

Commit 810cff5

Browse files
author
thefliik
authored
chore(docs): fix Collection#valueChanges() docs
1 parent 0457903 commit 810cff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/firestore/collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ There are multiple ways of streaming collection data from Firestore.
7979

8080
**Why would you use it?** - When you just need a list of data. No document metadata is attached to the resulting array which makes it simple to render to a view.
8181

82-
**When would you not use it?** - When you need a more complex data structure than an array or you need the `id` of each document to use data manipulation methods. This method assumes you either are saving the `id` to the document data or using a "readonly" approach.
82+
**When would you not use it?** - When you need a more complex data structure than an array.
8383

8484
**Best practices** - Use this method to display data on a page. It's simple but effective. Use `.snapshotChanges()` once your needs become more complex.
8585

0 commit comments

Comments
 (0)