From 64f2563b38b2b0b2bb767efd7ab01ce16a7bfdea Mon Sep 17 00:00:00 2001 From: campionfellin Date: Mon, 12 Mar 2018 22:38:51 -0700 Subject: [PATCH] Fix typo in comment --- .../main/java/com/example/firestore/snippets/References.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firestore/src/main/java/com/example/firestore/snippets/References.java b/firestore/src/main/java/com/example/firestore/snippets/References.java index aa863858171..afa2d7506bc 100644 --- a/firestore/src/main/java/com/example/firestore/snippets/References.java +++ b/firestore/src/main/java/com/example/firestore/snippets/References.java @@ -49,7 +49,7 @@ public CollectionReference getACollectionRef() { */ public DocumentReference getADocumentRef() { // [START fs_document_ref] - // Reference to a document with id "alovelace" in the collection "employees" + // Reference to a document with id "alovelace" in the collection "users" DocumentReference document = db.collection("users").document("alovelace"); // [END fs_document_ref] return document; @@ -62,7 +62,7 @@ public DocumentReference getADocumentRef() { */ public DocumentReference getADocumentRefUsingPath() { // [START fs_document_path_ref] - // Reference to a document with id "alovelace" in the collection "employees" + // Reference to a document with id "alovelace" in the collection "users" DocumentReference document = db.document("users/alovelace"); // [END fs_document_path_ref] return document;