From 5fb909ab5906887f2edca2734288b7ed9bf254cf Mon Sep 17 00:00:00 2001 From: Jos de Jong Date: Wed, 31 Jan 2024 09:33:45 +0100 Subject: [PATCH] docs: #3145 fix documentation about REPL, it does require a build step nowadays --- HISTORY.md | 2 ++ docs/command_line_interface.md | 7 +++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 8499d60f98..52fd6f94c2 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -9,6 +9,8 @@ Thanks @dvd101x. - Fix: #3114 build warnings related to a number of wrong `/* #__PURE__ */` annotations. +- Docs: #3145 fix documentation about REPL, it does require a build step + nowadays. # 2024-01-12, 12.3.0 diff --git a/docs/command_line_interface.md b/docs/command_line_interface.md index 1287e7b82b..6c1722bc33 100644 --- a/docs/command_line_interface.md +++ b/docs/command_line_interface.md @@ -68,10 +68,9 @@ $ mathjs --string --parenthesis=all # Command line debugging (REPL) -For debugging purposes, `bin/repl.js` provides a REPL (Read Evaluate Print Loop) -for interactive testing of mathjs without having to build new build files after every -little change to the source files. You can either start it directly (`./bin/repl.js`) or -via node (`node bin/repl.js`). +The library also provides a REPL (Read Evaluate Print Loop) via `bin/repl.js` which +loads mathjs in a Node.js command line environment. +You can either start it directly (`./bin/repl.js`) or via node (`node bin/repl.js`). You can exit using either [ctrl]-[C] or [ctrl]-[D].