Skip to content
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

Closed
jyn514 opened this issue Jun 25, 2021 · 12 comments · Fixed by #86662
Closed

rustdoc links to the wrong method anchor #86620

jyn514 opened this issue Jun 25, 2021 · 12 comments · Fixed by #86662
Labels
A-cross-crate-reexports Area: Documentation that has been re-exported from a different crate C-bug Category: This is a bug. regression-from-stable-to-stable Performance or correctness regression from one stable version to another. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Milestone

Comments

@jyn514
Copy link
Member

jyn514 commented Jun 25, 2021

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, on encrypt/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).

@jyn514 jyn514 added T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. regression-from-stable-to-stable Performance or correctness regression from one stable version to another. C-bug Category: This is a bug. E-needs-bisection Call for participation: This issue needs bisection: https://github.com/rust-lang/cargo-bisect-rustc E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example labels Jun 25, 2021
@jyn514 jyn514 added this to the 1.53.0 milestone Jun 25, 2021
@rustbot rustbot added the I-prioritize Issue: Indicates that prioritization has been requested for this issue. label Jun 25, 2021
@jyn514
Copy link
Member Author

jyn514 commented Jun 25, 2021

searched nightlies: from nightly-2021-04-14 to nightly-2021-04-16
regressed nightly: nightly-2021-04-15
searched commits: from 132b4e5 to 16bf626
regressed commit: b203b0d

bisected with cargo-bisect-rustc v0.6.0

Host triple: x86_64-unknown-linux-gnu
Reproduce with:

cargo bisect-rustc --preserve --start 2021-04-14 --end 2021-04-16 -- deadlinks 

cc @mockersf , do you have time to take a look?

@jyn514 jyn514 removed the E-needs-bisection Call for participation: This issue needs bisection: https://github.com/rust-lang/cargo-bisect-rustc label Jun 25, 2021
@fee1-dead

This comment has been minimized.

@rustbot rustbot removed the E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example label Jun 25, 2021
@fee1-dead

This comment has been minimized.

@rustbot rustbot added the E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. label Jun 25, 2021
@mockersf
Copy link
Contributor

mockersf commented Jun 25, 2021

This seems to happen only for implementations of VZip:
https://docs.rs/serde-encrypt-core/0.6.0/serde_encrypt_core/key/key_pair/public_key/struct.ReceiverPublicKey.html#impl-VZip%3CV%3E
Not sure why, but the trait itself is not a link to the original trait.

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 tymethod anchor, but it's missing the page to which it should link to find that anchor. I didn't manage yet to reproduce with a trait that would create the same situation as VZip does

@mockersf
Copy link
Contributor

mockersf commented Jun 25, 2021

There are two links:

  • the anchor on mouse over, which is a #method, and links to the current page
  • the link on the function name, which is a #tymethod and should link to the trait definition page.

The issue is on the second one and it should stay a #tymethod I think

@fee1-dead
Copy link
Member

fee1-dead commented Jun 25, 2021

This is more complicated than I think

@rustbot label E-needs-mcve -E-easy

@rustbot rustbot added E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example and removed E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. labels Jun 25, 2021
@fee1-dead
Copy link
Member

I actually can't reproduce this with the latest nightly with the crate. I cloned the repo, switched to that particular commit and ran cargo +nightly doc. The link is not broken.

@jyn514
Copy link
Member Author

jyn514 commented Jun 25, 2021

@fee1-dead try running deadlinks on it like in the original issue

@fee1-dead
Copy link
Member

It reproduced after I ran cargo clean.

The significant difference might be that the first run did not have Checking ppv-lite86 v0.2.10

@mockersf
Copy link
Contributor

I did not manage to isolate the issue, but I pushed a fix that works for serde-encrypt and that I understand

@jyn514
Copy link
Member Author

jyn514 commented Jul 1, 2021

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!()
    }
}

@jyn514
Copy link
Member Author

jyn514 commented Jul 2, 2021

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
    }
}

@jyn514 jyn514 added A-cross-crate-reexports Area: Documentation that has been re-exported from a different crate and removed E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example labels Jul 2, 2021
@bors bors closed this as completed in a6470c7 Jul 16, 2021
@apiraino apiraino removed the I-prioritize Issue: Indicates that prioritization has been requested for this issue. label May 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-cross-crate-reexports Area: Documentation that has been re-exported from a different crate C-bug Category: This is a bug. regression-from-stable-to-stable Performance or correctness regression from one stable version to another. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants