From 973845b7c6ba6c72ee55cf267c6bed0f861e3f78 Mon Sep 17 00:00:00 2001 From: William Grant <willmgrant@gmail.com> Date: Mon, 16 Oct 2023 15:01:29 +1100 Subject: [PATCH] fix: comment note casing --- ts/types/attachments/migrations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/types/attachments/migrations.ts b/ts/types/attachments/migrations.ts index 74353e6e7..d2bae6eb2 100644 --- a/ts/types/attachments/migrations.ts +++ b/ts/types/attachments/migrations.ts @@ -150,7 +150,7 @@ const handleDiskDeletion = async (path: string) => { try { const exists = await pathExists(path); - // Note we want to confirm the path no longer exists + // NOTE we want to confirm the path no longer exists if (exists) { throw Error('Error: File path still exists.'); }