summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2017-11-29 21:10:45 +0100
committerAlbert Krewinkel <albert@zeitkraut.de>2017-11-29 21:13:10 +0100
commitc65b514ed1a447f32ae3bf1dde64164deccdda51 (patch)
treeb71f67312a98551426b6401e2c0afb0ab54fa284 /data
parenta276bb0a8a07650368f3007820b96909c2734ff0 (diff)
List.lua: add _VERSION to module, drop unused var
Diffstat (limited to 'data')
-rw-r--r--data/List.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/data/List.lua b/data/List.lua
index 344292772..db6233c86 100644
--- a/data/List.lua
+++ b/data/List.lua
@@ -22,14 +22,13 @@ THIS SOFTWARE.
-- @author Albert Krewinkel
-- @copyright © 2017 Albert Krewinkel
-- @license MIT
-local M = {
- _VERSION = "0.1.0"
-}
------------------------------------------------------------------------
-- Metatable for lists
-- @type List
-local List = {}
+local List = {
+ _VERSION = "0.1.0"
+}
function List:new (o)
o = o or {}