diff --git a/Userland/Libraries/LibJS/Bytecode/Register.h b/Userland/Libraries/LibJS/Bytecode/Register.h index d902a6ac86..9275b7fe52 100644 --- a/Userland/Libraries/LibJS/Bytecode/Register.h +++ b/Userland/Libraries/LibJS/Bytecode/Register.h @@ -29,6 +29,6 @@ template<> struct AK::Formatter : AK::Formatter { void format(FormatBuilder& builder, JS::Bytecode::Register const& value) { - return AK::Formatter::format(builder, "r{}", value.index()); + return AK::Formatter::format(builder, "${}", value.index()); } };