Small variable name change

This commit is contained in:
Kilobyte22 2014-07-06 18:13:13 +02:00
parent d8ee287c96
commit 6441ce9e28

View File

@ -21,8 +21,8 @@ end
stdoutStream.close = stdinStream.close stdoutStream.close = stdinStream.close
stderrStream.close = stdinStream.close stderrStream.close = stdinStream.close
function stdinStream:read(n, dowrap) function stdinStream:read(n, dobreak)
local result = term.read(stdinHistory, dowrap) local result = term.read(stdinHistory, dobreak)
while #stdinHistory > 10 do while #stdinHistory > 10 do
table.remove(stdinHistory, 1) table.remove(stdinHistory, 1)
end end