From 2228857a2954a18e221e404085dc49892aae675a Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 28 Nov 2020 09:56:53 +1100 Subject: [PATCH] docs: fix simple typo, containg -> containing There is a small typo in quickjs.c. Should read `containing` rather than `containg`. --- quickjs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quickjs.c b/quickjs.c index a39ff8f..bbc2a99 100644 --- a/quickjs.c +++ b/quickjs.c @@ -19904,9 +19904,9 @@ typedef struct JSFunctionDef { int func_var_idx; /* variable containing the current function (-1 if none, only used if is_func_expr is true) */ int eval_ret_idx; /* variable containing the return value of the eval, -1 if none */ - int this_var_idx; /* variable containg the 'this' value, -1 if none */ - int new_target_var_idx; /* variable containg the 'new.target' value, -1 if none */ - int this_active_func_var_idx; /* variable containg the 'this.active_func' value, -1 if none */ + int this_var_idx; /* variable containing the 'this' value, -1 if none */ + int new_target_var_idx; /* variable containing the 'new.target' value, -1 if none */ + int this_active_func_var_idx; /* variable containing the 'this.active_func' value, -1 if none */ int home_object_var_idx; BOOL need_home_object;