Skip to content

Commit

Permalink
Fix incorrect node name (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkeeter authored Mar 28, 2024
1 parent 6d4b2d0 commit 64b2a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fidget/src/core/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ impl Context {
BinaryOpcode::Div => out += "div",
BinaryOpcode::Min => out += "min",
BinaryOpcode::Max => out += "max",
BinaryOpcode::Compare => out += "less-than",
BinaryOpcode::Compare => out += "compare",
},
Op::Unary(op, ..) => match op {
UnaryOpcode::Neg => out += "neg",
Expand Down

0 comments on commit 64b2a73

Please sign in to comment.