-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.

Description
Link to docs: https://doc.rust-lang.org/nightly/std/borrow/trait.Borrow.html
How it looks on my machine:
Notice the space before {
. Also, that indentation: where
is seemingly indented by two spaces, while fn
is indented by four. However, if I copy the code and paste here, it looks normal:
pub trait Borrow<Borrowed> where Borrowed: ?Sized {
fn borrow(&self) -> &Borrowed;
}
Metadata
Metadata
Assignees
Labels
T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.