* luci/libs/core: Small translation fix for get_bytecode()
authorJo-Philipp Wich <jow@openwrt.org>
Thu, 24 Jul 2008 15:25:52 +0000 (15:25 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Thu, 24 Jul 2008 15:25:52 +0000 (15:25 +0000)
libs/core/luasrc/util.lua

index 31e3b10..700a412 100644 (file)
@@ -440,8 +440,8 @@ end
 
 --- Return the current runtime bytecode of the given data. The byte code
 -- will be stripped before it is returned if the given value is a function.
--- @param val  Function value to return as bytecode
--- @return             String value containing the bytecode of the given function
+-- @param val  Value to return as bytecode
+-- @return             String value containing the bytecode of the given data
 function get_bytecode(val)
        if type(val) == "function" then
                local code = string.dump(val)