minor comment change
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-07-21 02:11:37 +09:00
parent bd107a172c
commit 266b3a34d5
2 changed files with 3 additions and 3 deletions

View File

@ -4782,7 +4782,7 @@ hcl_oop_t hcl_execute (hcl_t* hcl)
#endif
}
/* create a virtual function object that hold the bytes codes generated plus the literal frame */
/* create a virtual function object that holds the byte code generated plus the literal frame */
funcobj = make_function(hcl, hcl->code.lit.len, hcl->code.bc.ptr, hcl->code.bc.len, hcl->code.dbgi);
if (HCL_UNLIKELY(!funcobj)) return HCL_NULL;