From cbfcce1dd67534c2115331e41d4cb6893e96196c Mon Sep 17 00:00:00 2001 From: xerxes-at <5236639+xerxes-at@users.noreply.github.com> Date: Mon, 11 Dec 2023 10:06:44 +0100 Subject: [PATCH] fix(arc): typo that generates invalid syntax (#163) --- src/arc/source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arc/source.cpp b/src/arc/source.cpp index 1173ee1f..fafce1d1 100644 --- a/src/arc/source.cpp +++ b/src/arc/source.cpp @@ -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_), " )"); }