Skip to content

Commit 2c113b3

Browse files
authored
have checkboxes only point to date-check lines in files (#1603)
They currently also point to filenames, which is redundant. current - [ ] thir.md - [ ] line 7: 2022-04 - [ ] line 60: 2022-08 - [ ] traits/chalk.md - [ ] line 4: 2022-05 proposed - thir.md - [ ] line 7: 2022-04 - [ ] line 60: 2022-08 - traits/chalk.md - [ ] line 4: 2022-05
1 parent fdacc77 commit 2c113b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: ci/date-check/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ fn main() {
170170

171171
for (path, dates) in dates_by_file {
172172
println!(
173-
"- [ ] {}",
173+
"- {}",
174174
path.strip_prefix(&root_dir_path).unwrap_or(&path).display(),
175175
);
176176
for (line, date) in dates {

0 commit comments

Comments
 (0)