From e32a597d78f7715c2956c7174d4a0739e20a0ea6 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 19 Sep 2023 07:11:17 +0200 Subject: [PATCH] LibJS: Fix VariableNameToInitialize name spelling --- Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h b/Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h index f0897de2c4..3887771777 100644 --- a/Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h +++ b/Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h @@ -139,7 +139,7 @@ private: bool m_has_simple_parameter_list : 1 { false }; FunctionKind m_kind : 3 { FunctionKind::Normal }; - struct VariableNameToInitianlize { + struct VariableNameToInitialize { Identifier const& identifier; bool parameter_binding { false }; bool function_name { false }; @@ -150,7 +150,7 @@ private: HashTable m_parameter_names; Vector m_functions_to_initialize; bool m_arguments_object_needed { false }; - Vector m_var_names_to_initialize_binding; + Vector m_var_names_to_initialize_binding; Vector m_function_names_to_initialize_binding; };