mirror of
https://github.com/HybridDog/pdisc.git
synced 2025-07-02 16:20:41 +02:00
Update documentation of instructions and change tostring and tonumber behaviour
This commit is contained in:
@ -298,11 +298,11 @@ s = {
|
||||
end,
|
||||
|
||||
tostring = function(params)
|
||||
return true, params[1] and tostring(params[1]) or nil
|
||||
return true, tostring(params[1])
|
||||
end,
|
||||
|
||||
tonumber = function(params)
|
||||
return true, params[1] and tonumber(params[1])
|
||||
return true, tonumber(params[1])
|
||||
end,
|
||||
|
||||
toboolean = function(params)
|
||||
|
Reference in New Issue
Block a user