summaryrefslogtreecommitdiff
path: root/doc/api/debugger.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-11-28 12:38:23 -0800
committerRich Trott <rtrott@gmail.com>2016-12-02 08:56:51 -0600
commit98f9b5df1268a9473bf36a48373fc2b3792b3dd0 (patch)
treeb3c8daab9277fc4aef6a0c972b1ba717e9a0053b /doc/api/debugger.md
parentde495c0669345892beb6d9f025e9a9b7b6a59df1 (diff)
downloadandroid-node-v8-98f9b5df1268a9473bf36a48373fc2b3792b3dd0.tar.gz
android-node-v8-98f9b5df1268a9473bf36a48373fc2b3792b3dd0.tar.bz2
android-node-v8-98f9b5df1268a9473bf36a48373fc2b3792b3dd0.zip
doc: remove minor contradiction in debugger doc
The doc says the debugger is and also isn't full-featured. Even if the sentences are talking about different things, it's confusing. `full-featured` seems superfluous in the first sentence anyway, so remove it. Remove a superfluous `simple` while we're at it. PR-URL: https://github.com/nodejs/node/pull/9832 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'doc/api/debugger.md')
-rw-r--r--doc/api/debugger.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/debugger.md b/doc/api/debugger.md
index 48761cf047..c8a61d2ce7 100644
--- a/doc/api/debugger.md
+++ b/doc/api/debugger.md
@@ -4,10 +4,10 @@
<!-- type=misc -->
-Node.js includes a full-featured out-of-process debugging utility accessible
-via a simple [TCP-based protocol][] and built-in debugging client. To use it,
-start Node.js with the `debug` argument followed by the path to the script to
-debug; a prompt will be displayed indicating successful launch of the debugger:
+Node.js includes an out-of-process debugging utility accessible via a
+[TCP-based protocol][] and built-in debugging client. To use it, start Node.js
+with the `debug` argument followed by the path to the script to debug; a prompt
+will be displayed indicating successful launch of the debugger:
```txt
$ node debug myscript.js