fez-lisp 1.5.133 → 1.5.134
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.js +1 -1
- package/package.json +1 -1
- package/src/types.js +2 -2
package/package.json
CHANGED
package/src/types.js
CHANGED
@@ -1222,8 +1222,8 @@ export const formatSubType = (T) => {
|
|
1222
1222
|
? formatSubType([x])
|
1223
1223
|
: toTypeNamesAnyToUknown(x)
|
1224
1224
|
)
|
1225
|
-
.join(' ')
|
1226
|
-
:
|
1225
|
+
.join(' ') || toTypeNames(UNKNOWN)
|
1226
|
+
: toTypeNames(UNKNOWN)
|
1227
1227
|
}]`
|
1228
1228
|
case ATOM:
|
1229
1229
|
return `${
|