Fix spelling (#5049)

This commit is contained in:
chibitanaka
2024-05-23 16:06:42 +03:00
committed by GitHub
parent d947fb056d
commit fe68c12f9c
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ for (const name in oldLayout) {
if (name in newLayout) {
const report = getStorageUpgradeReport(oldLayout[name], newLayout[name], {});
if (!report.ok) {
console.log(`Storage layout incompatilibity found in ${name}:`);
console.log(`Storage layout incompatibility found in ${name}:`);
console.log(report.explain());
process.exitCode = 1;
}