We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f335c2f + 59ebeb8 commit e16647bCopy full SHA for e16647b
1 file changed
ci/date-check/src/main.rs
@@ -153,9 +153,13 @@ fn main() {
153
println!();
154
155
for (path, dates) in dates_by_file {
156
- println!("- {}", path.strip_prefix(&root_dir_path).unwrap_or(&path).display(),);
+ let path = path.strip_prefix(&root_dir_path).unwrap_or(&path).display();
157
+ println!("- {path}");
158
for (line, date) in dates {
- println!(" - [ ] line {}: {}", line, date);
159
+ let url = format!(
160
+ "https://github.com/rust-lang/rustc-dev-guide/blob/main/{path}?plain=1#L{line}"
161
+ );
162
+ println!(" - [ ] {date} [line {line}]({url})");
163
}
164
165
0 commit comments