From cc6783ac31b7d5b6930c7c539d214529879a6ea4 Mon Sep 17 00:00:00 2001 From: Tachytaenius Date: Tue, 21 May 2019 19:08:43 +0100 Subject: [PATCH] Fixed a broken luadoc comment Rewriting this code was haaaard, man... --- lib/list.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/list.lua b/lib/list.lua index 33b2c10..be70e4d 100644 --- a/lib/list.lua +++ b/lib/list.lua @@ -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