Auto merge of #8579 - matthiaskrgr:cargo_login_message, r=alexcrichton

cargo login: make login message less ambiguous

The previous message
"please visit https://crates.io/me and paste the API Token below"
Had me waiting for a token to appear in the command line which I would then paste into the website.
Rephrase to
"please paste the api token found on https://crates.io/me below"
to clarify where to paste from and where to paste to.
This commit is contained in:
bors 2020-08-03 15:46:14 +00:00
commit 2ba80edc67

View File

@ -665,7 +665,7 @@ pub fn registry_login(
None => {
drop_println!(
config,
"please visit {}/me and paste the API Token below",
"please paste the API Token found on {}/me below",
registry.host()
);
let mut line = String::new();