Fixed typo in Error string (#4539).

This commit is contained in:
Richard Moore 2024-01-15 14:23:49 -05:00
parent cd89de4eaf
commit 7882905085

@ -736,7 +736,7 @@ export function assertArgumentCount(count: number, expectedCount: number, messag
expectedCount: expectedCount
});
assert(count <= expectedCount, "too many arguemnts" + message, "UNEXPECTED_ARGUMENT", {
assert(count <= expectedCount, "too many arguments" + message, "UNEXPECTED_ARGUMENT", {
count: count,
expectedCount: expectedCount
});