Skip to content

Commit c67b57f

Browse files
authored
Merge pull request #71 from JohanWiltink/main
another config bug
2 parents b30b8b9 + 556e27f commit c67b57f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lambda-calculus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export function toInt(term) {
149149
else
150150
return config.numEncoding.toInt(term); // Custom encoding
151151
} catch (e) {
152-
if ( config.verbosity >= "Concise" ) console.error(`toInt: ${ term } is not a number in numEncoding ${ numEncoding }`);
152+
if ( config.verbosity >= "Concise" ) console.error(`toInt: ${ term } is not a number in numEncoding ${ config.numEncoding }`);
153153
throw e;
154154
}
155155
}

0 commit comments

Comments
 (0)