Skip to content

Commit

Permalink
Make eslint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
robsimmons committed Aug 9, 2024
1 parent b12c6ec commit b470407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/termoutput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function termToData(tm: InputTerm): Data {
return hide({ type: 'int', value: BigInt(tm) });
}

export function termToString(tm: Term, parens = false): String {
export function termToString(tm: Term, parens = false): string {
if (tm === null) return '()';
if (typeof tm === 'boolean') return `bool#${tm}`;
if (typeof tm === 'string') return `"${escapeString(tm)}"`;
Expand Down

0 comments on commit b470407

Please sign in to comment.