Unkown -> unkown (typo fix)

This commit is contained in:
Rory&
2025-10-03 20:53:24 +02:00
parent 5295a0b563
commit 625df4e314
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -102,7 +102,7 @@ export function instanceOf(
Object.keys(type).map((x) => (x.startsWith(OPTIONAL_PREFIX) ? x.slice(OPTIONAL_PREFIX.length) : x))
);
if (diff.length) throw `Unkown key ${diff}`;
if (diff.length) throw `Unknown key ${diff}`;
return Object.keys(type).every((key) => {
let newKey = key;