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

Inconsistent spacing between constants in rustdoc #105868

Closed
y21 opened this issue Dec 18, 2022 · 2 comments
Closed

Inconsistent spacing between constants in rustdoc #105868

y21 opened this issue Dec 18, 2022 · 2 comments
Labels
A-rustdoc-ui Area: Rustdoc UI (generated HTML) C-bug Category: This is a bug. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.

Comments

@y21
Copy link
Member

y21 commented Dec 18, 2022

I'm not sure if this is a bug or intended behavior, but it seems like the spacing between constants is off if the constant defines a code block.

You can see this in the stdlib documentation on various types, like here on the type i32:

image

In 1.65, it looked like this (link):
image

I can also reproduce this locally: if I run cargo doc --open on this code:

pub struct Foo;
impl Foo {
    /// ```rust
    /// use bug::Foo;
    /// ```
    pub const BAR: u32 = 123;
    pub const BAZ: u32 = 456;
    pub const BAZ2: u32 = 789;
}

This happens:

image

The constant BAZ has less padding than the other constants.

Meta

❯ rustc --version --verbose
rustc 1.66.0-nightly (5c8bff74b 2022-10-21)
binary: rustc
commit-hash: 5c8bff74bc1c52bef0c79f3689bb227f51f3e82d
commit-date: 2022-10-21
host: x86_64-unknown-linux-gnu
release: 1.66.0-nightly
LLVM version: 15.0.2
@y21 y21 added the C-bug Category: This is a bug. label Dec 18, 2022
@albertlarsan68
Copy link
Member

@rustbot label +A-rustdoc

@rustbot rustbot added A-rustdoc-ui Area: Rustdoc UI (generated HTML) T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue. labels Dec 22, 2022
@GuillaumeGomez
Copy link
Member

It was fixed in #103793. It's currently in beta so the problem will disappear at the next release.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-rustdoc-ui Area: Rustdoc UI (generated HTML) C-bug Category: This is a bug. 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