Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CSharp.lua/CoreSystem.Lua/All.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ return function(dir, conf)
load("Enum")
load("TimeSpan")
load("DateTime")
load("Type")
load("Collections.EqualityComparer")
load("Collection")
load("Array")
load("Type")
load("Collections.List")
load("Collections.Dictionary")
load("Collections.Queue")
Expand Down
2 changes: 1 addition & 1 deletion CSharp.lua/CoreSystem.Lua/CoreSystem/Collection.lua
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ function Collection.forEachArray(t, action)
if action == null then throw(ArgumentNullException("action")) end
local version = versions[t]
for i = 1, #t do
if versions ~= versions[t] then
if version ~= versions[t] then
throwFailedVersion()
end
action(unWrap(t[i]))
Expand Down
2 changes: 1 addition & 1 deletion CSharp.lua/CoreSystem.Lua/CoreSystem/Delegate.lua
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ end

local function create0_2(f)
return function(x1, x2, T1, T2)
return f(x1, x2, T2)
return f(x1, x2, T1, T2)
end
end

Expand Down