From 580f20a96bf498c0e498c417a561fc526f5906f1 Mon Sep 17 00:00:00 2001 From: Parker Scanlon <69879391+scanlonp@users.noreply.github.com> Date: Thu, 19 Sep 2024 04:27:15 -0700 Subject: [PATCH] chore: typo in error message (#71) = --- lib/asset-manifest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/asset-manifest.ts b/lib/asset-manifest.ts index 1d3741b..c5cedd9 100644 --- a/lib/asset-manifest.ts +++ b/lib/asset-manifest.ts @@ -26,7 +26,7 @@ export class AssetManifest { const obj = Manifest.loadAssetManifest(fileName); return new AssetManifest(path.dirname(fileName), obj); } catch (e: any) { - throw new Error(`Canot read asset manifest '${fileName}': ${e.message}`); + throw new Error(`Cannot read asset manifest '${fileName}': ${e.message}`); } }