docs cleanup

This commit is contained in:
Mikayla Fischler 2022-06-06 15:40:08 -04:00
parent 8b307ea030
commit 285026c1fa

View File

@ -81,7 +81,7 @@ end
-- is a value an integer -- is a value an integer
---@param x any value ---@param x any value
---@return boolean if the number is an integer ---@return boolean is_integer if the number is an integer
function util.is_int(x) function util.is_int(x)
return type(x) == "number" and x == math.floor(x) return type(x) == "number" and x == math.floor(x)
end end