Skip to content

Commit

Permalink
fix(arc): typo that generates invalid syntax (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
xerxes-at committed Dec 11, 2023
1 parent 139f9ce commit cbfcce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arc/source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1410,7 +1410,7 @@ auto source::dump_expr_getdvarint(expr_getdvarint const& exp) -> void

auto source::dump_expr_getdvarfloat(expr_getdvarfloat const& exp) -> void
{
fmt::format_to(std::back_inserter(buf_), "getdvarflaot( ");
fmt::format_to(std::back_inserter(buf_), "getdvarfloat( ");
dump_expr(*exp.arg);
fmt::format_to(std::back_inserter(buf_), " )");
}
Expand Down

0 comments on commit cbfcce1

Please sign in to comment.