From 7056786541743b38a01e8c07d8d9365a0a7c113c Mon Sep 17 00:00:00 2001 From: Todd Wolfson Date: Wed, 10 May 2017 12:07:21 -0700 Subject: [PATCH] Touched up README edits --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2e63137..7768985 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ Using [`request`][] options we can add a proxy to our requests curl: { custom: { src: { - url: 'http://google.com', + url: 'http://google.com/', proxy: 'http://127.0.0.1:9001/' }, dest: 'google.html' @@ -220,8 +220,8 @@ curl: { } ``` -### Using an authentication -Using [`request`][] options we can add an authentication to our requests +### Using authentication +Using [`request`][] options we can add authentication to our requests ```js curl: { @@ -229,14 +229,13 @@ curl: { src: { url: 'http://secureserver.com/members', auth: { - user: 'user', - pass: 'mdp' + user: 'my-username', + pass: 'my-password' } }, - dest: 'member.html' + dest: 'secure.html' } } - ``` ## Contributing