Skip to content

Commit dedcca8

Browse files
authored
Fix small typos from previous PR (#28)
* Fix small typos from previous PR * Reverted the wrong item
1 parent 99d5ae2 commit dedcca8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/firebase_snippets_app/lib/snippets/firestore.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,6 @@ class FirestoreSnippets extends DocSnippet {
481481

482482
void getDataOnce_getAllDocumentsInASubcollection() {
483483
// [START get_data_once_get_all_documents_in_a_subcollection]
484-
// [START firestore_query_subcollection]
485484
db.collection("cities").doc("SF").collection("landmarks").get().then(
486485
(querySnapshot) {
487486
print("Successfully completed");
@@ -491,7 +490,6 @@ class FirestoreSnippets extends DocSnippet {
491490
},
492491
onError: (e) => print("Error completing: $e"),
493492
);
494-
// [END firestore_query_subcollection]
495493
// [END get_data_once_get_all_documents_in_a_subcollection]
496494
}
497495

0 commit comments

Comments
 (0)