fez-lisp 1.6.80 → 1.6.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/baked/std-T.js +1 -1
- package/lib/baked/std.js +1 -1
- package/package.json +1 -1
- package/src/check.js +1 -1
package/package.json
CHANGED
package/src/check.js
CHANGED
@@ -1441,7 +1441,7 @@ export const typeCheck = (
|
|
1441
1441
|
check(fn, env, scope)
|
1442
1442
|
const expected = env[name]
|
1443
1443
|
const actual = env[lambdaName]
|
1444
|
-
if (expected[ARG_COUNT] !== actual[ARG_COUNT]) {
|
1444
|
+
if (expected[STATS][ARG_COUNT] !== actual[STATS][ARG_COUNT]) {
|
1445
1445
|
throw new RangeError(
|
1446
1446
|
`Incorrect number of arguments for (${
|
1447
1447
|
expected[STATS][SIGNATURE]
|