summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/AST.cpp
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2020-10-02 09:59:28 -0400
committerAndreas Kling <kling@serenityos.org>2020-10-02 16:03:17 +0200
commitef1b21004fc04efdd1baf01d375d4bac614abc61 (patch)
tree9fd9b386cc9d7bd5d21ad8e480e946c43c183b54 /Libraries/LibJS/AST.cpp
parent73998744793a60b91afabdbc24ad56d9d45171b9 (diff)
downloadserenity-ef1b21004fc04efdd1baf01d375d4bac614abc61.zip
Everywhere: Fix typos
Mostly in comments, but sprintf() now prints "August" instead of "Auguest" so that's something.
Diffstat (limited to 'Libraries/LibJS/AST.cpp')
-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 cedab231cd..00687215eb 100644
--- a/Libraries/LibJS/AST.cpp
+++ b/Libraries/LibJS/AST.cpp
@@ -114,7 +114,7 @@ CallExpression::ThisAndCallee CallExpression::compute_this_and_callee(Interprete
}
if (m_callee->is_super_expression()) {
- // If we are calling super, |this| has not been initalized yet, and would not be meaningful to provide.
+ // If we are calling super, |this| has not been initialized yet, and would not be meaningful to provide.
auto new_target = interpreter.vm().get_new_target();
ASSERT(new_target.is_function());
return { js_undefined(), new_target };