diff options
author | madmaxoft <github@xoft.cz> | 2013-10-18 12:33:46 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-10-18 12:33:46 +0200 |
commit | 1c0ab57d12710c87cd206561813ca503b4199b7c (patch) | |
tree | 8b0682095f1c200fd521d7c471ba4391fa684c52 | |
parent | APIDump: Makes a list of bad links. (diff) | |
download | cuberite-1c0ab57d12710c87cd206561813ca503b4199b7c.tar cuberite-1c0ab57d12710c87cd206561813ca503b4199b7c.tar.gz cuberite-1c0ab57d12710c87cd206561813ca503b4199b7c.tar.bz2 cuberite-1c0ab57d12710c87cd206561813ca503b4199b7c.tar.lz cuberite-1c0ab57d12710c87cd206561813ca503b4199b7c.tar.xz cuberite-1c0ab57d12710c87cd206561813ca503b4199b7c.tar.zst cuberite-1c0ab57d12710c87cd206561813ca503b4199b7c.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/main.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MCServer/Plugins/APIDump/main.lua b/MCServer/Plugins/APIDump/main.lua index 0ca68e107..22c7ad764 100644 --- a/MCServer/Plugins/APIDump/main.lua +++ b/MCServer/Plugins/APIDump/main.lua @@ -308,7 +308,7 @@ function DumpAPIHtml() end -- List the undocumented objects: - f = io.open("API/undocumented.lua", "w"); + f = io.open("API/_undocumented.lua", "w"); if (f ~= nil) then f:write("\n-- This is the list of undocumented API objects, automatically generated by APIDump\n\n"); f:write("g_APIDesc =\n{\n\tClasses =\n\t{\n"); @@ -374,7 +374,7 @@ function DumpAPIHtml() end -- List the unexported documented API objects: - f = io.open("API/unexported-documented.txt", "w"); + f = io.open("API/_unexported-documented.txt", "w"); if (f ~= nil) then for clsname, cls in pairs(g_APIDesc.Classes) do if not(cls.IsExported) then |