Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

docs: Fix typo on 'How to use the Node.js REPL' page #432

Merged
merged 1 commit into from
Mar 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/documentation/0011-node-repl/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ The REPL has some special commands, all starting with a dot `.`. They are
- `.clear`: resets the REPL context to an empty object and clears any multi-line expression currently being input.
- `.load`: loads a JavaScript file, relative to the current working directory
- `.save`: saves all you entered in the REPL session to a file (specify the filename)
- `.exit`: exists the repl (same as pressing ctrl-C two times)
- `.exit`: exits the repl (same as pressing ctrl-C two times)

The REPL knows when you are typing a multi-line statement without the need to invoke `.editor`.

Expand Down