diff --git a/build/actions/auth.js b/build/actions/auth.js index b87663c3..9f6f6c48 100644 --- a/build/actions/auth.js +++ b/build/actions/auth.js @@ -36,7 +36,7 @@ description: 'login to resin.io', help: "Use this command to login to your resin.io account.\n\nTo login, you need your token, which is accesible from the preferences page:\n\n " + TOKEN_URL + "\n\nExamples:\n\n $ resin login\n $ resin login \"eyJ0eXAiOiJKV1Qi...\"", action: function(params, options, done) { - console.info("To login to the Resin CLI, you need your unique token, which is accesible from\nthe preferences page at " + TOKEN_URL + "\n\nAttempting to open a browser at such location..."); + console.info("To login to the Resin CLI, you need your unique token, which is accesible from\nthe preferences page at " + TOKEN_URL + "\n\nAttempting to open a browser at that location..."); return async.waterfall([ function(callback) { return open(TOKEN_URL, function(error) { diff --git a/lib/actions/auth.coffee b/lib/actions/auth.coffee index 5382f192..36a7a0c5 100644 --- a/lib/actions/auth.coffee +++ b/lib/actions/auth.coffee @@ -45,7 +45,7 @@ exports.login = To login to the Resin CLI, you need your unique token, which is accesible from the preferences page at #{TOKEN_URL} - Attempting to open a browser at such location... + Attempting to open a browser at that location... """ async.waterfall([