File tree 1 file changed +4
-2
lines changed
compiler/rustc_middle/src/mir
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> {
581
581
pub enum TerminatorEdges < ' mir , ' tcx > {
582
582
/// For terminators that have no successor, like `return`.
583
583
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.
585
586
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`.
587
589
Double ( BasicBlock , BasicBlock ) ,
588
590
/// Special action for `Yield`, `Call` and `InlineAsm` terminators.
589
591
AssignOnReturn {
You can’t perform that action at this time.
0 commit comments