Closed
Description
This example indents as shown:
/// - there must not exist an edge U->V in the graph where:
#[derive(Clone, PartialEq, Eq)]
pub struct Region {
entry: BasicBlockIndex,
leaves: BTreeMap<BasicBlockIndex, usize>,
}
But I would expect:
/// - there must not exist an edge U->V in the graph where:
#[derive(Clone, PartialEq, Eq)]
pub struct Region { // <-- this should be flush with left margin!
entry: BasicBlockIndex,
leaves: BTreeMap<BasicBlockIndex, usize>,
}
Presumably the angle-bracket matching code is going a bit awry here.
Metadata
Metadata
Assignees
Labels
No labels