Fix confusing comment in helpers::cargo_home

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-07-23 19:10:15 +10:00
parent 3838219d89
commit 49f665d680
No known key found for this signature in database
GPG key ID: 591C0B03040416D6

View file

@ -52,7 +52,7 @@ pub fn cargo_home() -> Result<&'static Path, io::Error> {
return Ok(p); return Ok(p);
} }
// Standard $HOME/.cargo/bin // Standard $HOME/.cargo
if let Some(mut d) = dirs::home_dir() { if let Some(mut d) = dirs::home_dir() {
d.push(".cargo"); d.push(".cargo");