From e6909354d4a3bfd06f3eb9125c16b9f92346624a Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Wed, 11 Dec 2024 23:51:44 +0100 Subject: [PATCH] grammar fix --- bin/lips.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lips.js b/bin/lips.js index 49c345cd..8eef9d71 100755 --- a/bin/lips.js +++ b/bin/lips.js @@ -333,7 +333,7 @@ if (options.version || options.V) { return run('(for-each (lambda (x) (write x) (newline)) output)', interp, options.d || options.dynamic); }); } else if (options.e || options.eval) { - // from 1.0 documentation should use -e but it's not breaking change + // from 1.0 documentation should use -e but it's not a breaking change bootstrap(interp).then(function() { const code = options.e || options.eval; const dynamic = options.d || options.dynamic;