Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion firestore-next/test.firestore.js
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ describe("firestore", () => {
if (docSnap.exists()) {
console.log("Document data:", docSnap.data());
} else {
// doc.data() will be undefined in this case
// docSnap.data() will be undefined in this case
console.log("No such document!");
}
// [END get_document]
Expand Down
2 changes: 1 addition & 1 deletion snippets/firestore-next/test-firestore/get_document.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const docSnap = await getDoc(docRef);
if (docSnap.exists()) {
console.log("Document data:", docSnap.data());
} else {
// doc.data() will be undefined in this case
// docSnap.data() will be undefined in this case
console.log("No such document!");
}
// [END get_document_modular]