about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2018-07-12 12:48:10 +0200
committerRalf Jung <post@ralfj.de>2018-07-12 12:48:10 +0200
commite9a88eaaf9a42785aa91b67281ab265ba85bc43e (patch)
tree1b444b09579b9d9a318793d978f23928a7d79fab /src/libstd
parentde857bbcf02d192986efc380b4735d8c9bea85ac (diff)
downloadrust-e9a88eaaf9a42785aa91b67281ab265ba85bc43e.tar.gz
rust-e9a88eaaf9a42785aa91b67281ab265ba85bc43e.zip
make reference to dirs crate clickable in terminals
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/env.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/env.rs b/src/libstd/env.rs
index c0e1e2533a0..9066c0b7694 100644
--- a/src/libstd/env.rs
+++ b/src/libstd/env.rs
@@ -541,7 +541,7 @@ impl Error for JoinPathsError {
 /// ```
 #[rustc_deprecated(since = "1.29.0",
     reason = "This function's behavior is unexpected and probably not what you want. \
-              Consider using the home_dir function from crates.io/crates/dirs instead.")]
+              Consider using the home_dir function from https://crates.io/crates/dirs instead.")]
 #[stable(feature = "env", since = "1.0.0")]
 pub fn home_dir() -> Option<PathBuf> {
     os_imp::home_dir()