fix(ldoc.ltp): Identify inherited items by name

This commit is contained in:
Aire-One 2021-03-27 20:05:52 +01:00
parent 93e9361280
commit 5baa1c97cd
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@
# for item in items() do
# local tobeadded = true
# for i in iter(curr_kind.items) do
# if item == i then
# if item.name == i.name then
# tobeadded = false
# break
# end