X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=modules%2Fluci-base%2Fluasrc%2Futil.luadoc;h=4ec68dd1efc0ed356876d584e8dee1e5e0a67b77;hb=0560858380a583e0ce26a99a2396d8255f138cf8;hp=19c8010dfd565a735e28891404853b2dbc89408e;hpb=f52c8d0b7f0eeec4259992182103d859f454639b;p=oweals%2Fluci.git diff --git a/modules/luci-base/luasrc/util.luadoc b/modules/luci-base/luasrc/util.luadoc index 19c8010df..4ec68dd1e 100644 --- a/modules/luci-base/luasrc/util.luadoc +++ b/modules/luci-base/luasrc/util.luadoc @@ -158,7 +158,7 @@ Return a matching iterator for the given value. The iterator will return one token per invocation, the tokens are separated by whitespace. If the input value is a table, it is transformed into a string first. -A nil value will result in a valid interator which aborts with the first invocation. +A nil value will result in a valid iterator which aborts with the first invocation. @class function @name imatch @@ -255,14 +255,6 @@ Clones the given object and return it's copy. @return Cloned table value ]] ----[[ -Create a dynamic table which automatically creates subtables. - -@class function -@name dtable -@return Dynamic Table -]] - ---[[ Recursively serialize given data to lua code, suitable for restoring with loadstring(). @@ -297,7 +289,7 @@ will be stripped before it is returned. ]] ---[[ -Strips unnescessary lua bytecode from given string. +Strips unnecessary lua bytecode from given string. Information like line numbers and debugging numbers will be discarded. Original version by Peter Cawley (http://lua-users.org/lists/lua-l/2008-02/msg01158.html)