Skip to content

Commit

Permalink
fix instance IsA
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdotink committed Dec 16, 2023
1 parent 83b1381 commit f9ce7af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/output/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ impl Display for Expr {

Expr::Vector3(x, y, z) => write!(f, "Vector3.new({x}, {y}, {z})"),

Expr::InstanceIsA(expr, class) => write!(f, "{expr}:IsA(\"{class}\")"),
Expr::InstanceIsA(expr, class) => write!(f, "{expr}:IsA({class})"),

Expr::Len(expr) => write!(f, "#{expr}"),

Expand Down

0 comments on commit f9ce7af

Please sign in to comment.