more doc refixes

This commit is contained in:
VorTechnix 2024-10-16 19:57:55 -07:00
parent 63bdbdfac9
commit 0ffdb47b54
No known key found for this signature in database
GPG Key ID: 091E91A69545D5BA

@ -13,8 +13,8 @@ end
local validate = {} local validate = {}
--- Validate name --- Validate name
-- @param string name The name of the player to validate. -- @param name string The name of the player to validate.
-- @returns boolean True if the name is valid, false otherwise. -- @returns boolean True if the name is valid, false otherwise.
validate.name = function(name) validate.name = function(name)
if type(name) ~= "string" then if type(name) ~= "string" then
log_error(tostring(name) .. " is a " .. type(name) .. " not a string.\n") log_error(tostring(name) .. " is a " .. type(name) .. " not a string.\n")
@ -30,13 +30,13 @@ validate.name = function(name)
end end
--- Validate message --- Validate message
-- @param string message The message to validate. -- @param message string The message to validate.
-- @returns boolean True if the message is a string, false otherwise. -- @returns boolean True if the message is a string, false otherwise.
validate.message = function(message) return type(message) == "string" end validate.message = function(message) return type(message) == "string" end
--- Validate colour --- Validate colour
-- @param string colour The colour to validate. -- @param colour string The colour to validate.
-- @returns boolean True if the colour is valid, false otherwise. -- @returns boolean True if the colour is valid, false otherwise.
validate.colour = function(colour) validate.colour = function(colour)
return ( type(colour) == "string" and return ( type(colour) == "string" and
colour:match("^#%x+$") and colour:match("^#%x+$") and
@ -44,9 +44,9 @@ validate.colour = function(colour)
end end
--- Validate all --- Validate all
-- @param string name The name of the player to validate. -- @param name string The name of the player to validate.
-- @param string message The message to validate. -- @param message string The message to validate.
-- @param string colour The colour to validate. -- @param colour string The colour to validate.
-- @returns boolean, table|nil Returns the validation status, followed by details of the failure if bool == false. -- @returns boolean, table|nil Returns the validation status, followed by details of the failure if bool == false.
-- | Return arg | Meaning | -- | Return arg | Meaning |
-- |------------|---------| -- |------------|---------|