From 0aaab313a0c4b2d31ec2603badb5488c18d9fae5 Mon Sep 17 00:00:00 2001 From: Parker Scanlon <69879391+scanlonp@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:34:25 -0700 Subject: [PATCH] chore: typo in error message --- 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}`); } }