From 677c075827d61ffe1affc26989f6f7c43d6c1a7d Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Fri, 6 May 2022 23:01:11 +0900 Subject: [PATCH] Fix an incorrect URL Follow up https://github.com/rust-lang/rust/pull/74862. https://github.com/rust-lang/rust/blob/master/src/librustc_errors/json.rs returns page not found. This PR fixes the incorrect URL. --- rls-span/src/compiler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rls-span/src/compiler.rs b/rls-span/src/compiler.rs index 60151a56109..795ba02e340 100644 --- a/rls-span/src/compiler.rs +++ b/rls-span/src/compiler.rs @@ -1,6 +1,6 @@ ///! These are the structures emitted by the compiler as part of JSON errors. ///! The original source can be found at -///! https://github.com/rust-lang/rust/blob/master/src/librustc_errors/json.rs +///! https://github.com/rust-lang/rust/blob/master/compiler/rustc_errors/src/json.rs use std::path::PathBuf; #[cfg(feature = "derive")]