fez-lisp 1.6.7 → 1.6.8
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/package.json +1 -1
- package/src/check.js +2 -2
package/package.json
CHANGED
package/src/check.js
CHANGED
@@ -1643,8 +1643,8 @@ export const typeCheck = (ast, ctx = SPECIAL_FORM_TYPES) => {
|
|
1643
1643
|
throw new TypeError(
|
1644
1644
|
`Incorrect type of argument (${i}) for (${
|
1645
1645
|
first[VALUE]
|
1646
|
-
}). Expected (${
|
1647
|
-
args[i][STATS]
|
1646
|
+
}). Expected (${formatSubType(
|
1647
|
+
getTypes(args[i][STATS])
|
1648
1648
|
)}) but got (${toTypeNames(
|
1649
1649
|
rest[i][TYPE]
|
1650
1650
|
)}) (${stringifyArgs(exp)}) (check #2)`
|