docs: #3145 fix documentation about REPL, it does require a build step nowadays

This commit is contained in:
Jos de Jong 2024-01-31 09:33:45 +01:00
parent 4475dacc5a
commit 5fb909ab59
2 changed files with 5 additions and 4 deletions

View File

@ -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

View File

@ -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].