Merge pull request #20 from wolfboyft/patch-1

Fixed a broken luadoc comment
This commit is contained in:
Justin van der Leij 2019-05-22 13:15:13 +02:00 committed by GitHub
commit 4c5e6a06dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,7 +68,7 @@ end
--- Gets if the List has the object.
-- @param obj The object to search for
-- true if the list has the object, false otherwise
-- @return true if the list has the object, false otherwise
function List:has(obj)
return self.pointers[obj] and true
end