New year (2024->2025), typos in comments
This commit is contained in:
Roberto Ierusalimschy
2025-01-16 11:51:16 -03:00
parent 3cdd49c94a
commit 2d8d5c74b5
15 changed files with 24 additions and 25 deletions

View File

@@ -106,7 +106,7 @@ static int math_floor (lua_State *L) {
static int math_ceil (lua_State *L) {
if (lua_isinteger(L, 1))
lua_settop(L, 1); /* integer is its own ceil */
lua_settop(L, 1); /* integer is its own ceiling */
else {
lua_Number d = l_mathop(ceil)(luaL_checknumber(L, 1));
pushnumint(L, d);