summaryrefslogtreecommitdiff
path: root/Libraries
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries')
-rw-r--r--Libraries/LibJS/AST.cpp2
1 files changed, 1 insertions, 1 deletions
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