1
0
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:
Hybrid Dog
2017-08-24 18:05:34 +02:00
parent 2c3f1edd81
commit 589575ef2d
3 changed files with 123 additions and 144 deletions

View File

@ -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)