From bbfbeff4bc910cd8cba543a2d519ecd919137566 Mon Sep 17 00:00:00 2001 From: Ross Olson Date: Sat, 8 Apr 2017 04:29:37 -0700 Subject: [PATCH] Minor grammar/line length changes (#547) --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3b3d1c0..cab98de 100644 --- a/README.md +++ b/README.md @@ -311,14 +311,16 @@ These are the available config options for making requests. Only the `url` is re maxRedirects: 5, // default // `httpAgent` and `httpsAgent` define a custom agent to be used when performing http - // and https requests, respectively, in node.js. This allows to configure options like + // and https requests, respectively, in node.js. This allows options to be added like // `keepAlive` that are not enabled by default. httpAgent: new http.Agent({ keepAlive: true }), httpsAgent: new https.Agent({ keepAlive: true }), // 'proxy' defines the hostname and port of the proxy server - // `auth` indicates that HTTP Basic auth should be used to connect to the proxy, and supplies credentials. - // This will set an `Proxy-Authorization` header, overwriting any existing `Proxy-Authorization` custom headers you have set using `headers`. + // `auth` indicates that HTTP Basic auth should be used to connect to the proxy, and + // supplies credentials. + // This will set an `Proxy-Authorization` header, overwriting any existing + // `Proxy-Authorization` custom headers you have set using `headers`. proxy: { host: '127.0.0.1', port: 9000,