fix(arc): typo that generates invalid syntax (#163)

This commit is contained in:
xerxes-at 2023-12-11 10:06:44 +01:00 committed by GitHub
parent 139f9ce55c
commit cbfcce1dd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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_), " )");
}