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.
This commit is contained in:
Koichi ITO 2022-05-06 23:01:11 +09:00
parent d8478d82f5
commit 677c075827
1 changed files with 1 additions and 1 deletions

View File

@ -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")]