From ed473dc87bb35165e7739fc811709b896d704a7e Mon Sep 17 00:00:00 2001 From: Alex Grant Date: Sun, 12 Nov 2017 20:36:21 -0500 Subject: [PATCH 1/2] fixes spelling error. metod = method --- 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 2372ec716..26f4a1152 100644 --- a/docs/firestore/collections.md +++ b/docs/firestore/collections.md @@ -78,7 +78,7 @@ There are multiple ways of streaming collection data from Firestore. **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. -**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 metods. This method assumes you either are saving the `id` to the document data or using a "readonly" approach. +**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. **Best practices** - Use this method to display data on a page. It's simple but effective. Use `.snapshotChanges()` once your needs become more complex. From a70bfbfe89b05b3ac951a31912e9f0b3d03722a6 Mon Sep 17 00:00:00 2001 From: alexmgrant Date: Sun, 12 Nov 2017 21:02:42 -0500 Subject: [PATCH 2/2] Trigger Googlebot