diff options
author | madmaxoft <github@xoft.cz> | 2013-11-23 21:43:38 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-11-23 21:43:38 +0100 |
commit | 38fe16d8b6bfc41f077cb700a3bc5a537cf28959 (patch) | |
tree | a31767dc633ec40ee2835d105436e14da5d91c14 | |
parent | APIDump: Reformatted the sqlite docs. (diff) | |
download | cuberite-38fe16d8b6bfc41f077cb700a3bc5a537cf28959.tar cuberite-38fe16d8b6bfc41f077cb700a3bc5a537cf28959.tar.gz cuberite-38fe16d8b6bfc41f077cb700a3bc5a537cf28959.tar.bz2 cuberite-38fe16d8b6bfc41f077cb700a3bc5a537cf28959.tar.lz cuberite-38fe16d8b6bfc41f077cb700a3bc5a537cf28959.tar.xz cuberite-38fe16d8b6bfc41f077cb700a3bc5a537cf28959.tar.zst cuberite-38fe16d8b6bfc41f077cb700a3bc5a537cf28959.zip |
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 8778727e1..afe002784 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -2456,7 +2456,6 @@ myDB:close() </pre> ]], }, open_memory = { Return = "DBClass", Notes = "Opens an SQLite database in memory and returns its handle as userdata. In case of an error, the function returns nil, an error code and an error message. (In-memory databases are volatile as they are never stored on disk.)" }, - temp_directory = { Params = "string", Notes = "Opens an SQLite database in memory and returns its handle as userdata. In case of an error, the function returns nil, an error code and an error message. (In-memory databases are volatile as they are never stored on disk.)" }, version = { Return = "string", Notes = "Returns a string with SQLite version information, in the form 'x.y[.z]'." }, }, }, @@ -2813,6 +2812,7 @@ end "Globals.collectgarbage", "Globals.xpcall", "Globals.decoda_output", -- When running under Decoda, this function gets added to the global namespace + "sqlite3.__newindex", "%a+\.__%a+", -- AnyClass.__Anything "%a+\.\.collector", -- AnyClass..collector "%a+\.new", -- AnyClass.new @@ -2828,6 +2828,7 @@ end "ListMissingPages", "ListUndocumentedObjects", "ListUnexportedObjects", + "LoadAPIFiles", "ReadDescriptions", "ReadHooks", "WriteHtmlClass", |