From 285026c1fa20775de74e7c2846ad3693ad15a58a Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Mon, 6 Jun 2022 15:40:08 -0400 Subject: [PATCH] docs cleanup --- scada-common/util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scada-common/util.lua b/scada-common/util.lua index b860b28..fc194ca 100644 --- a/scada-common/util.lua +++ b/scada-common/util.lua @@ -81,7 +81,7 @@ end -- is a value an integer ---@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) return type(x) == "number" and x == math.floor(x) end