Skip to content

Commit cbe6843

Browse files
committed
Fix src link URLs for file rename
1 parent da7e87e commit cbe6843

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: tests/rustdoc/src-links-implementor-43893.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
pub trait SomeTrait {}
88
pub struct SomeStruct;
99

10-
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#9'
10+
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/src-links-implementor-43893.rs.html#11'
1111
impl SomeTrait for usize {}
1212

13-
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#12-14'
13+
// @has foo/trait.SomeTrait.html '//a/@href' '../src/foo/src-links-implementor-43893.rs.html#14-16'
1414
impl SomeTrait for SomeStruct {
1515
// deliberately multi-line impl
1616
}
1717

1818
pub trait AnotherTrait {}
1919

20-
// @has foo/trait.AnotherTrait.html '//a/@href' '../src/foo/issue-43893.rs.html#19'
20+
// @has foo/trait.AnotherTrait.html '//a/@href' '../src/foo/src-links-implementor-43893.rs.html#21'
2121
impl<T> AnotherTrait for T {}

0 commit comments

Comments
 (0)