diff options
| author | bors <bors@rust-lang.org> | 2021-06-02 23:11:41 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-06-02 23:11:41 +0000 |
| commit | da865095cf378fbfd07145c25fe5837ea091efeb (patch) | |
| tree | 2c0a9ac6fa9c261f83ec9ef4333a29d33c5e9757 /src/tools | |
| parent | dbe459dedd33470f2cb28101157de316caaffa66 (diff) | |
| parent | 0daf8ac41f438ba338051e18a56ef8ae64951748 (diff) | |
| download | rust-da865095cf378fbfd07145c25fe5837ea091efeb.tar.gz rust-da865095cf378fbfd07145c25fe5837ea091efeb.zip | |
Auto merge of #84703 - GuillaumeGomez:cleanup-dom, r=jsha
Clean up dom The commits come from #84480. They were errors reported by the `tidy` script that we will use to ensure that the HTML generated by rustdoc is valid. I checked carefully that there were no difference so in principle it should be exactly the same rendering but a double-check would be very appreciated in case I missed something. Extra note: `<h4>` and some `<h3>` tags were replaced by `<div>` because they're not supposed to contain tags as they currently do. r? `@jsha`
Diffstat (limited to 'src/tools')
| -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 076b3653583..47960c3f6cc 100644 --- a/src/tools/linkchecker/main.rs +++ b/src/tools/linkchecker/main.rs @@ -463,7 +463,7 @@ fn maybe_redirect(source: &str) -> Option<String> { const REDIRECT: &str = "<p>Redirecting to <a href="; let mut lines = source.lines(); - let redirect_line = lines.nth(6)?; + let redirect_line = lines.nth(7)?; redirect_line.find(REDIRECT).map(|i| { let rest = &redirect_line[(i + REDIRECT.len() + 1)..]; |
