File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
compiler/rustc_middle/src/mir Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -581,9 +581,11 @@ impl<'tcx> TerminatorKind<'tcx> {
581581pub enum TerminatorEdges < ' mir , ' tcx > {
582582 /// For terminators that have no successor, like `return`.
583583 None ,
584- /// For terminators that a single successor, like `goto`, and `assert` without cleanup block.
584+ /// For terminators that have a single successor, like `goto`, and `assert` without a cleanup
585+ /// block.
585586 Single ( BasicBlock ) ,
586- /// For terminators that two successors, `assert` with cleanup block and `falseEdge`.
587+ /// For terminators that have two successors, like `assert` with a cleanup block, and
588+ /// `falseEdge`.
587589 Double ( BasicBlock , BasicBlock ) ,
588590 /// Special action for `Yield`, `Call` and `InlineAsm` terminators.
589591 AssignOnReturn {
You can’t perform that action at this time.
0 commit comments