From 35b4c5aa39496d5dbe941620f6f093a9b05a1bcb Mon Sep 17 00:00:00 2001 From: Erik Desjardins Date: Sat, 12 Mar 2016 15:21:31 -0500 Subject: [PATCH] simplify comments --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6cd6ef2..80d3a8a 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,8 @@ var fs = require('fs'); var deploy = require('chrome-extension-deploy'); deploy({ - // clientId, clientSecret and refreshToken obtained by following the instructions here: + // obtained by following the instructions here: // https://developer.chrome.com/webstore/using_webstore_api#beforeyoubegin - // unfortunately it seems that you cannot use an ordinary private key, you must use OAuth clientId: 'myClientId', clientSecret: 'myClientSecret', refreshToken: 'myRefreshToken', @@ -36,6 +35,6 @@ deploy({ // success! }, function(err) { // failure :( - // errors are sanitized, so your clientId/clientSecret/refreshToken will not be leaked + // errors are sanitized, so your tokens will not be leaked }); ```