Closed

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;
}