about summary refs log tree commit diff
path: root/src/build_helper
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2020-11-05 14:33:23 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2020-11-05 20:11:29 +0100
commit99200f760bf588435ca53477bb1eaff34770db0b (patch)
tree26ffd00a096c8a9ea7695eac97e5edd36e31f515 /src/build_helper
parent16ed8501ef35f0008fefd7f51746a10a7e7505ac (diff)
Fix even more URLs
Diffstat (limited to 'src/build_helper')
-rw-r--r--src/build_helper/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_helper/lib.rs b/src/build_helper/lib.rs
index e30da8d56e1..80f804174ed 100644
--- a/src/build_helper/lib.rs
+++ b/src/build_helper/lib.rs
@@ -32,7 +32,7 @@ macro_rules! t {
 
 /// Reads an environment variable and adds it to dependencies.
 /// Supposed to be used for all variables except those set for build scripts by cargo
-/// https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
+/// <https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts>
 pub fn tracked_env_var_os<K: AsRef<OsStr> + Display>(key: K) -> Option<OsString> {
     println!("cargo:rerun-if-env-changed={}", key);
     env::var_os(key)