Skip to content

Commit

Permalink
Fix linkchecker on windows (backslash issue)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Aug 26, 2021
1 parent 25406d5 commit 7e435ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tools/linkchecker/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[
("alloc/vec/struct.Vec.html", &["#method.sort_by_key", "#method.sort_by_cached_key"]),
("core/primitive.str.html", &["#method.to_ascii_uppercase", "#method.to_ascii_lowercase"]),
("core/primitive.slice.html", &["#method.to_ascii_uppercase", "#method.to_ascii_lowercase",
"#method.sort_by_cached_key", "core/slice::sort_by_key"]),
"core/slice::sort_by_key", "core\\slice::sort_by_key",
"#method.sort_by_cached_key"]),
];

#[rustfmt::skip]
Expand Down

0 comments on commit 7e435ce

Please sign in to comment.