Browse Source

doc: white space unification in repl.md

Add an infix space in an argument list.
Change `>` into `> ` in code bits and output examples.
Explicitly clarify that default REPL prompt contains a trailing space.

PR-URL: https://github.com/nodejs/node/pull/10244
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v7.x
Vse Mozhet Byt 8 years ago
committed by Evan Lucas
parent
commit
ae61232493
  1. 21
      doc/api/repl.md

21
doc/api/repl.md

@ -217,10 +217,10 @@ following example, for instance, simply converts any input text to upper case:
```js ```js
const repl = require('repl'); const repl = require('repl');
const r = repl.start({prompt: '>', eval: myEval, writer: myWriter}); const r = repl.start({prompt: '> ', eval: myEval, writer: myWriter});
function myEval(cmd, context, filename, callback) { function myEval(cmd, context, filename, callback) {
callback(null,cmd); callback(null, cmd);
} }
function myWriter(output) { function myWriter(output) {
@ -275,7 +275,7 @@ function initializeContext(context) {
context.m = 'test'; context.m = 'test';
} }
const r = repl.start({prompt: '>'}); const r = repl.start({prompt: '> '});
initializeContext(r.context); initializeContext(r.context);
r.on('reset', initializeContext); r.on('reset', initializeContext);
@ -286,15 +286,15 @@ reset to its initial value using the `.clear` command:
```js ```js
$ ./node example.js $ ./node example.js
>m > m
'test' 'test'
>m = 1 > m = 1
1 1
>m > m
1 1
>.clear > .clear
Clearing context... Clearing context...
>m > m
'test' 'test'
> >
``` ```
@ -371,8 +371,9 @@ within the action function for commands registered using the
added: v0.1.91 added: v0.1.91
--> -->
* `options` {Object} * `options` {Object | String}
* `prompt` {String} The input prompt to display. Defaults to `> `. * `prompt` {String} The input prompt to display. Defaults to `> `
(with a trailing space).
* `input` {Readable} The Readable stream from which REPL input will be read. * `input` {Readable} The Readable stream from which REPL input will be read.
Defaults to `process.stdin`. Defaults to `process.stdin`.
* `output` {Writable} The Writable stream to which REPL output will be * `output` {Writable} The Writable stream to which REPL output will be

Loading…
Cancel
Save