From ac40356dcefc57d57e6319160afd4361476c71f6 Mon Sep 17 00:00:00 2001 From: Viktor Korsun Date: Thu, 9 Mar 2023 17:59:07 +1300 Subject: [PATCH] Fixing a typo We don't need an indefinite article here since it is a Name and is also plural. --- quickstarts/uppercase-firestore/functions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstarts/uppercase-firestore/functions/index.js b/quickstarts/uppercase-firestore/functions/index.js index 3e80d073a4..eec31bccd9 100644 --- a/quickstarts/uppercase-firestore/functions/index.js +++ b/quickstarts/uppercase-firestore/functions/index.js @@ -58,7 +58,7 @@ exports.makeUppercase = functions.firestore.document('/messages/{documentId}') const uppercase = original.toUpperCase(); - // You must return a Promise when performing asynchronous tasks inside a Functions such as + // You must return a Promise when performing asynchronous tasks inside Functions such as // writing to Firestore. // Setting an 'uppercase' field in Firestore document returns a Promise. return snap.ref.set({uppercase}, {merge: true});