-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustdoc links to the wrong method anchor #86620
Comments
searched nightlies: from nightly-2021-04-14 to nightly-2021-04-16 bisected with cargo-bisect-rustc v0.6.0Host triple: x86_64-unknown-linux-gnu cargo bisect-rustc --preserve --start 2021-04-14 --end 2021-04-16 -- deadlinks cc @mockersf , do you have time to take a look? |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This seems to happen only for implementations of It's https://docs.rs/ppv-lite86/0.2.10/ppv_lite86/trait.VZip.html#method.vzip, and on its own page the trait name is not a link in its implementations The link correctly has a |
There are two links:
The issue is on the second one and it should stay a |
This is more complicated than I think @rustbot label E-needs-mcve -E-easy |
I actually can't reproduce this with the latest nightly with the crate. I cloned the repo, switched to that particular commit and ran |
@fee1-dead try running |
It reproduced after I ran The significant difference might be that the first run did not have |
I did not manage to isolate the issue, but I pushed a fix that works for |
Smaller reproduction (only 2 crates): // lib.rs
use ppv_lite86::*;
pub struct S;
impl MultiLane<usize> for S {
fn from_lanes(lanes: usize) -> Self {
todo!();
}
fn to_lanes(self) -> usize {
todo!()
}
} |
MCVE (requires at least 2 crates): // src/lib.rs
use ppv_lite86::*;
pub struct S;
// ppv_lite86/src/lib.rs
pub trait VZip {
fn vzip() -> usize;
}
impl<T> VZip for T {
fn vzip() -> usize {
0
}
} |
I tried this code: laysakura/serde-encrypt@b46c118
I expected to see this happen: All links rustdoc generates are valid.
Instead, this happened:
In impl<V: Multilane, T> VZip for T
, onencrypt/encrypted_message/struct.EncryptedMessage.html
, the function vzip links to #tymethod.vzip, but the proper link is #method.vzip. This causes the anchor to go nowhere.Meta
rustdoc --version
: rustdoc 1.53.0 (53cb7b0 2021-06-17)This is also present on rustdoc 1.55.0-nightly (7c3872e 2021-06-24).
The text was updated successfully, but these errors were encountered: