fez-lisp 1.5.98 → 1.5.99

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 CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "fez-lisp",
3
3
  "description": "Lisp interpreted & compiled to JavaScript",
4
4
  "author": "AT290690",
5
- "version": "1.5.98",
5
+ "version": "1.5.99",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/types.js CHANGED
@@ -1189,7 +1189,7 @@ export const formatType = (name, env) => {
1189
1189
  ? getType(stats) === APPLY
1190
1190
  ? `${isAnonymous ? '' : `(let ${name} `}(lambda ${
1191
1191
  stats[ARG_COUNT] === VARIADIC
1192
- ? '... ' + STATIC_TYPES.UNKNOWN
1192
+ ? '... '
1193
1193
  : stats[ARGUMENTS]?.length
1194
1194
  ? stats[ARGUMENTS].map(
1195
1195
  (x, i) =>