Skip to content

Commit

Permalink
Merge pull request #484 from joelverhagen/set-init
Browse files Browse the repository at this point in the history
Fix casing of HashSet collection copy
  • Loading branch information
yanghuan authored Jan 7, 2024
2 parents 2aaaaea + 401fca9 commit ce32d18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ local HashSet = {
elseif len == 1 then
local collection = ...
if collection == nil then return end
if collection.getEnumerator ~= nil then
if collection.GetEnumerator ~= nil then
build(this, collection, nil)
else
assert(true)
Expand Down

0 comments on commit ce32d18

Please sign in to comment.