diff --git a/Libraries/LibJS/AST.cpp b/Libraries/LibJS/AST.cpp index b7b821080e..7539dcf0f3 100644 --- a/Libraries/LibJS/AST.cpp +++ b/Libraries/LibJS/AST.cpp @@ -332,7 +332,7 @@ void StringLiteral::dump(int indent) const void NumericLiteral::dump(int indent) const { print_indent(indent); - printf("NumberLiteral %g\n", m_value); + printf("NumericLiteral %g\n", m_value); } void BooleanLiteral::dump(int indent) const