From 89065858e0ff0907636f580cf668f4736408895e Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 4 Nov 2021 00:35:23 -0400 Subject: [PATCH] spelling: exhausted --- VM/include/lualib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VM/include/lualib.h b/VM/include/lualib.h index 7a09ae9f..30cffaff 100644 --- a/VM/include/lualib.h +++ b/VM/include/lualib.h @@ -76,7 +76,7 @@ struct luaL_Buffer char buffer[LUA_BUFFERSIZE]; }; -// when internal buffer storage is exhaused, a mutable string value 'storage' will be placed on the stack +// when internal buffer storage is exhausted, a mutable string value 'storage' will be placed on the stack // in general, functions expect the mutable string buffer to be placed on top of the stack (top-1) // with the exception of luaL_addvalue that expects the value at the top and string buffer further away (top-2) // functions that accept a 'boxloc' support string buffer placement at any location in the stack