From 209701b2851f047f3872abfdfce79501295b4a2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Sun, 2 Aug 2020 18:04:12 +0200 Subject: [PATCH] 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. --- src/cargo/ops/registry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/ops/registry.rs b/src/cargo/ops/registry.rs index 83d09694830..c7cb078045b 100644 --- a/src/cargo/ops/registry.rs +++ b/src/cargo/ops/registry.rs @@ -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();