aboutsummaryrefslogtreecommitdiff
path: root/containers.lua
diff options
context:
space:
mode:
Diffstat (limited to 'containers.lua')
-rw-r--r--containers.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/containers.lua b/containers.lua
index 2cb8e49..5b406de 100644
--- a/containers.lua
+++ b/containers.lua
@@ -45,7 +45,7 @@ nth_to_last = function(self, n)
return self[#self - n + 1]
end
local _list_mt = {
- __type = "List",
+ __type = "a List",
__eq = function(self, other)
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self) and #other == #self) then
return false
@@ -252,7 +252,7 @@ List = function(t)
end
end
local _dict_mt = {
- __type = "Dict",
+ __type = "a Dict",
__eq = function(self, other)
if not (type(other) == 'table' and getmetatable(other) == getmetatable(self)) then
return false