Skip to content

Commit

Permalink
Change match to switch
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Fischman committed Apr 11, 2024
1 parent 901a5fe commit 2b31ce2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/rvsdg/rvsdg2svg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ fn mk_node_and_input_edges(index: Id, nodes: &[RvsdgBody]) -> (Node, Vec<Edge>)
outputs,
} => (
Node::Match(
"match".to_string(),
"switch".to_string(),
outputs
.iter()
.enumerate()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ expression: svg_new
font-size="50"
x="25"
y="50">
match
switch
</text>
<g>
<g
Expand Down Expand Up @@ -894,4 +894,3 @@ expression: svg_new
</g>
</g>
</svg>

0 comments on commit 2b31ce2

Please sign in to comment.