Skip to content

Commit f4e0431

Browse files
authored
Rollup merge of #71578 - ryzokuken:linkchecker, r=Dylan-DPC
linkchecker: fix typo in main.rs Came across this while reading the file.
2 parents f81a41a + 3a6fa99 commit f4e0431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/linkchecker/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ fn walk(cache: &mut Cache, root: &Path, dir: &Path, errors: &mut bool) {
114114
}
115115

116116
fn check(cache: &mut Cache, root: &Path, file: &Path, errors: &mut bool) -> Option<PathBuf> {
117-
// Ignore none HTML files.
117+
// Ignore non-HTML files.
118118
if file.extension().and_then(|s| s.to_str()) != Some("html") {
119119
return None;
120120
}

0 commit comments

Comments
 (0)