From 0645c3d0c411a8d84b2039ace3e19af081d30599 Mon Sep 17 00:00:00 2001 From: Prince J Wesley Date: Sat, 23 Jul 2016 12:10:45 +0530 Subject: [PATCH] doc: align breakEvalOnSigint - repl option PR-URL: https://github.com/nodejs/node/pull/7849 Reviewed-By: Anna Henningsen Reviewed-By: JungMinu - Minwoo Jung Reviewed-By: Colin Ihrig --- doc/api/repl.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/repl.md b/doc/api/repl.md index 124106e642ee62..5499f4dacb5462 100644 --- a/doc/api/repl.md +++ b/doc/api/repl.md @@ -392,9 +392,9 @@ added: v0.1.91 equivalent to prefacing every repl statement with `'use strict'`. * `repl.REPL_MODE_MAGIC` - attempt to evaluates expressions in default mode. If expressions fail to parse, re-try in strict mode. - * `breakEvalOnSigint` - Stop evaluating the current piece of code when - `SIGINT` is received, i.e. `Ctrl+C` is pressed. This cannot be used together - with a custom `eval` function. Defaults to `false`. + * `breakEvalOnSigint` - Stop evaluating the current piece of code when + `SIGINT` is received, i.e. `Ctrl+C` is pressed. This cannot be used together + with a custom `eval` function. Defaults to `false`. The `repl.start()` method creates and starts a `repl.REPLServer` instance.