Module:form of: Difference between revisions

m
ਕੋਈ ਸੋਧ ਸਾਰ ਨਹੀਂ
mNo edit summary
Tag: Reverted
mNo edit summary
Tag: Manual revert
Line 9: Line 9:
if m_data.aliases[inflection] then inflection = m_data.aliases[inflection] end
if m_data.aliases[inflection] then inflection = m_data.aliases[inflection] end
local l = m_data.labels[inflection]
local l = m_data.labels[inflection]
if i > 1 and not inflection == "/" then
if i > 1 and inflection ~= "/" then
table.insert(out, " ")
table.insert(out, " ")
end
end
Line 22: Line 22:
table.insert(out, inflection)
table.insert(out, inflection)
end
end
if inflections[i+1] and not inflection == "/" then
if inflections[i+1] and inflection ~= "/" then
table.insert(out, " ")
table.insert(out, " ")
end
end