-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Nightly documentation's std::vec's source link does not work #28302
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
Comments
I will fix this! |
The link is going to core_collections/vec when it should just be going to collections/vec. I can't push a change to the index.html file because it is in the gitignore so I'm assuming the link is generated somewhere else. I'm new to the repo, so does anyone else know where the link is generated? |
@nfallen yes all of these pages are generated from the code source This is a bug in rustdoc, which generates these links: https://github.com/rust-lang/rust/tree/master/src/librustdoc I'm not sure if there's a specific issue for this, but rustdoc has a lot of bugs, and needs a lot of love |
thank you @gankro I will look into the rustdoc bug |
@alexcrichton probably knows the most about our current design |
This is in fact fixed! |
The
source
link on thevec
page https://doc.rust-lang.org/nightly/std/vec/index.html leads to https://doc.rust-lang.org/nightly/core_collections/vec/?gotosrc=24157 which is just aNot Found
page. I randomly clicked source on other pages and they seem to work.The text was updated successfully, but these errors were encountered: