Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Alan Lawrence <[email protected]>
  • Loading branch information
ss2165 and acl-cqc authored Jan 5, 2024
1 parent 13c6188 commit 661954c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ops/controlflow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ pub struct DataflowBlock {
}

#[derive(Clone, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
/// The single exit node of the CFG, has no children,
/// The single exit node of the CFG. Has no children,
/// stores the types of the CFG node output.
pub struct ExitBlock {
/// Output type row of the CFG.
Expand All @@ -140,7 +140,7 @@ impl OpName for DataflowBlock {

impl OpName for ExitBlock {
fn name(&self) -> SmolStr {
"Exit".into()
"ExitBlock".into()
}
}

Expand Down

0 comments on commit 661954c

Please sign in to comment.