From 06ced7042da0e1774ef88090d14a9670fa55978e Mon Sep 17 00:00:00 2001 From: Marshall Polaris Date: Thu, 18 Aug 2022 12:49:01 -0700 Subject: [PATCH] Fix a typo in my script --- functions/src/scripts/backfill-comment-types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/src/scripts/backfill-comment-types.ts b/functions/src/scripts/backfill-comment-types.ts index cce1c85d..6b61170e 100644 --- a/functions/src/scripts/backfill-comment-types.ts +++ b/functions/src/scripts/backfill-comment-types.ts @@ -8,7 +8,7 @@ if (require.main === module) { const firestore = app.firestore() const commentsRef = firestore.collectionGroup('comments') commentsRef.get().then(async (commentsSnaps) => { - log(`Loaded ${commentsSnaps.size} contracts.`) + log(`Loaded ${commentsSnaps.size} comments.`) const needsFilling = commentsSnaps.docs.filter((ct) => { return !('commentType' in ct.data()) })