1
0
Fork 0

APIDump: Added a missing endline to the NewlyUndocumented output file.

This commit is contained in:
Mattes D 2015-10-11 21:25:40 +02:00
parent 4a1cec01e8
commit f6cd03db53
1 changed files with 1 additions and 0 deletions

View File

@ -1749,6 +1749,7 @@ local function HandleCmdApiCheck(a_Split, a_EntireCmd)
-- Save any found items to a file:
local f = io.open("NewlyUndocumented.lua", "w")
f:write(table.concat(res, "\n"))
f:write("\n")
f:close()
return true, "Newly undocumented items: " .. #res .. "\n" .. table.concat(res, "\n")