diff options
| author | kennytm <kennytm@gmail.com> | 2018-07-12 20:25:33 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-12 20:25:33 +0800 |
| commit | a7c2c68b135b40666bda030315007c29ce197901 (patch) | |
| tree | 41bda55edea65f5ef3f02b198ce2984b97e666e2 /src/libstd | |
| parent | 019dc2a357e5442608086307f6c0804bcdced0f3 (diff) | |
| parent | e9a88eaaf9a42785aa91b67281ab265ba85bc43e (diff) | |
Rollup merge of #52298 - RalfJung:dirs, r=Mark-Simulacrum
make reference to dirs crate clickable in terminals Currently I have to copy-paste the link; with this change I can just click it right in my terminal window.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/env.rs | 2 |
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() |
