summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-10-18 12:33:46 +0200
committermadmaxoft <github@xoft.cz>2013-10-18 12:33:46 +0200
commit1c0ab57d12710c87cd206561813ca503b4199b7c (patch)
tree8b0682095f1c200fd521d7c471ba4391fa684c52 /MCServer/Plugins
parentAPIDump: Makes a list of bad links. (diff)
downloadcuberite-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 'MCServer/Plugins')
-rw-r--r--MCServer/Plugins/APIDump/main.lua4
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