Skip to content
Open
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
4 changes: 2 additions & 2 deletions lib/XCollectionService.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Class.__index = function(inst, key)
-- Since this is an extension wrapper for CollectionService, just return CollectionService's version

if not CollectionService[key] then
error("Attempt to index " + tostring(key) + ", a nil value", 2)
error("Attempt to index " .. tostring(key) .. ", a nil value", 2)
end

if type(CollectionService[key]) == "function" then
Expand Down Expand Up @@ -380,4 +380,4 @@ return {
end
return instance
end
}
}