Skip to content

Commit

Permalink
Fixed typo interger -> integer
Browse files Browse the repository at this point in the history
  • Loading branch information
simonprickett authored Mar 29, 2022
1 parent c9e310c commit d6e8255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ function formatReply(reply, indent = '') {
if (type === 'string') {
return `"${reply}"`;
} else if (type === 'number') {
return `(interger) ${reply}`;
return `(integer) ${reply}`;
} else if (Array.isArray(reply)) {
if (reply.length === 0) {
return '(empty array)';
Expand Down

0 comments on commit d6e8255

Please sign in to comment.