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

Hidden type shows up in rustdoc #28800

Closed
jethrogb opened this issue Oct 1, 2015 · 2 comments
Closed

Hidden type shows up in rustdoc #28800

jethrogb opened this issue Oct 1, 2015 · 2 comments
Labels
T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

Comments

@jethrogb
Copy link
Contributor

jethrogb commented Oct 1, 2015

On https://doc.rust-lang.org/stable/std/cmp/trait.Ord.html and other pages, one might find implementors such as:

impl Ord for Big32x36
impl Ord for Big8x3

But these types are not exported and should be hidden from the documentation.

@steveklabnik steveklabnik added the T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. label Oct 1, 2015
@hanna-kruppe
Copy link
Contributor

Note: Technically these types are accessible — that is, with the proper #![feature()] you can use them — but they are inside a #[doc(hidden)] module and not re-exported from there.

The most serious part of the problem is that Big32x36, Big8x3, etc. are links to non-existing pages, (they 404).

@mitaa
Copy link
Contributor

mitaa commented Mar 23, 2016

These aren't shown anymore since #31903

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

4 participants