Skip to content

Commit

Permalink
chore: typo in error message (#71)
Browse files Browse the repository at this point in the history
=
  • Loading branch information
scanlonp authored Sep 19, 2024
1 parent 2656546 commit 580f20a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/asset-manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
}
}

Expand Down

0 comments on commit 580f20a

Please sign in to comment.