You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rustdoc: remove incorrect CSS selector `.impl-items table td`
Fixesrust-lang#100994
This selector was added in c7312fb. The bug can be seen at <https://doc.rust-lang.org/1.27.0/alloc/slice/trait.SliceIndex.html#foreign-impls>.
This rule was added to help with a `<table>` that was used for displaying the function signature [src] lockup. That lockup was changed in 34bd2b8 to use flexbox instead, leaving this selector unused (at least, for its original purpose).
rustdoc: remove incorrect CSS selector `.impl-items table td`
Fixesrust-lang#100994
This selector was added in c7312fb. The bug can be seen at <https://doc.rust-lang.org/1.27.0/alloc/slice/trait.SliceIndex.html#foreign-impls>.
This rule was added to help with a `<table>` that was used for displaying the function signature [src] lockup. That lockup was changed in 34bd2b8 to use flexbox instead, leaving this selector unused (at least, for its original purpose).
I tried this code:
I expected to see this happen:
The Markdown table in the doc is supposed to have the same rendering in a trait implementation and elsewhere.
Instead, this happened: explanation
The Markdown table in the doc of a trait function implementation is not correct.
There is no separation between columns and rows. Except for the header table.
Also, I don't know if it's intentional but the table header is not centered (see header1 and header2), as it is supposed to be in markdown.
Meta
rustc --version --verbose
:I tested on both Stable and Nightly channels.
The text was updated successfully, but these errors were encountered: