From 797bdee4ddf20b901851f9df35b9253e1b491140 Mon Sep 17 00:00:00 2001 From: Zachary Boyd Date: Fri, 11 May 2018 13:27:50 -0700 Subject: [PATCH] Fixes typos in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d0a79d..f14bf39 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Tor Router also includes a DNS forward proxy and a HTTP forward proxy as well, w ## Building and Running -The only installation requirement is node.js. Tor is bundled with the application. To use an external Tor executable use the "--torPath" command line switch or set the "TOR_PATH" environment variable. +The only installation requirement is node.js. Tor is bundled with the application. To use an external Tor executable use the `--torPath` command line switch or set the `TOR_PATH` environment variable. To install run: `npm install` To start run: `bin/tor-router` @@ -97,8 +97,8 @@ Example (in node): let client = net.createConnection({ port: 9077 }, () => { let rpcRequest = { - "method": "signalAllInstances", - "params": ["shutdown"], + "method": "createInstances", + "params": [3], "jsonrpc":"2.0", "id": 1 };