-
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
Modifies the rendering of constant values in rustdoc. #112035
Conversation
Previously, non-literal expressions (like `50 + 50`) would be printed alongside their value as a comment (like ` = _; // 100i32`). This approach often resulted in confusing documentation, especially for complex expressions. To improve clarity, this commit changes the rendering to display the evaluated value of the expression directly (like ` = 100i32;`) unless the constant is a literal expression. The original expression is still included as a comment if it doesn't match the evaluated value. These changes aim to improve the readability and usefulness of constant value documentation generated by rustdoc.
r? @notriddle (rustbot has picked a reviewer for you, use r? to override) |
CC @GuillaumeGomez I thought of implementing this fix before migration to Askama |
This comment has been minimized.
This comment has been minimized.
This sounds like a good improvement to me. However, this is a very complicated topic. So first let's hear from the last person who worked (a lot) on this. cc @fmease |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall the changes look fine, thanks for tackling the FIXME!
However please address the nits and update the tests.
For context, I wrote this FIXME and it would also be fixed by #99688
which is currently blocked on an RFC that I need to write (but which
I didn't do yet since I'm no longer sure if it's the right direction for
rustdoc but that's another story).
Your changes seem to be a good middle ground in the meantime.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Some changes occurred in src/tools/clippy cc @rust-lang/clippy |
Closing this PR and opening a new one, I guess the fork on this one got corrupted and involved changes that are not currently related to this PR |
The job Click to see the possible cause of the failure (guessed by this bot)
|
Previously, non-literal expressions (like
50 + 50
) would be printedalongside their value as a comment (like
= _; // 100i32
). This approachoften resulted in confusing documentation, especially for complex expressions.
To improve clarity, this commit changes the rendering to display the evaluated
value of the expression directly (like
= 100i32;
) unless the constant is aliteral expression. The original expression is still included as a comment if it
doesn't match the evaluated value.
These changes aim to improve the readability and usefulness of constant value
documentation generated by rustdoc.