From 020e45ff80eac5a44b625f5d769108f016b12e50 Mon Sep 17 00:00:00 2001 From: Evaldas Buinauskas Date: Wed, 26 Dec 2018 21:29:22 +0200 Subject: [PATCH] Fixed typo --- 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 eed253c401..e984fede56 100644 --- a/quickstarts/uppercase-firestore/functions/index.js +++ b/quickstarts/uppercase-firestore/functions/index.js @@ -36,7 +36,7 @@ exports.addMessage = functions.https.onRequest((req, res) => { // [START adminSdkAdd] // Push the new message into the Realtime Database using the Firebase Admin SDK. return admin.firestore().collection('messages').add({original: original}).then((writeResult) => { - // Send back a message that we've succesfully written the message + // Send back a message that we've successfully written the message return res.json({result: `Message with ID: ${writeResult.id} added.`}); }); // [END adminSdkAdd]