diff options
| author | Ujjwal Sharma <ryzokuken@disroot.org> | 2020-04-26 17:09:15 +0530 |
|---|---|---|
| committer | Ujjwal Sharma <ryzokuken@disroot.org> | 2020-04-26 17:09:15 +0530 |
| commit | 3a6fa99f9eec7bb3293a75eb0dd0d26b47323ed5 (patch) | |
| tree | 15350874d3769888dd27241e24776cc679b091c0 /src/tools/linkchecker | |
| parent | 019ab732ce63a117cbb446db1488916c5c0bd2a7 (diff) | |
| download | rust-3a6fa99f9eec7bb3293a75eb0dd0d26b47323ed5.tar.gz rust-3a6fa99f9eec7bb3293a75eb0dd0d26b47323ed5.zip | |
linkchecker: fix typo in main.rs
Diffstat (limited to 'src/tools/linkchecker')
| -rw-r--r-- | src/tools/linkchecker/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/linkchecker/main.rs b/src/tools/linkchecker/main.rs index fb4611ed1ca..570ffd5d306 100644 --- a/src/tools/linkchecker/main.rs +++ b/src/tools/linkchecker/main.rs @@ -114,7 +114,7 @@ fn walk(cache: &mut Cache, root: &Path, dir: &Path, errors: &mut bool) { } fn check(cache: &mut Cache, root: &Path, file: &Path, errors: &mut bool) -> Option<PathBuf> { - // Ignore none HTML files. + // Ignore non-HTML files. if file.extension().and_then(|s| s.to_str()) != Some("html") { return None; } |
