]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_codegen_llvm/metadata.rs
Rollup merge of #68156 - JohnTitor:fix-path-in-doc, r=Dylan-DPC
[rust.git] / src / librustc_codegen_llvm / metadata.rs
index d328144a15e1261d7bd496c3b9f9e21dddd8fb33..abe34bb148ce5f7f8079bec9589e86ecd8960acb 100644 (file)
@@ -97,7 +97,7 @@ pub fn metadata_section_name(target: &Target) -> &'static str {
     // > Executable images do not use a string table and do not support
     // > section names longer than 8 characters
     //
-    // https://msdn.microsoft.com/en-us/library/windows/hardware/gg463119.aspx
+    // https://docs.microsoft.com/en-us/windows/win32/debug/pe-format
     //
     // As a result, we choose a slightly shorter name! As to why
     // `.note.rustc` works on MinGW, that's another good question...