Module:Infobox MOS: Difference between revisions
m bugfix |
update to new function names in module:mos |
||
| Line 270: | Line 270: | ||
-- Produce the mos's relatives | -- Produce the mos's relatives | ||
local parent_mos, sister_mos, soft_child_mos, hard_child_mos, neutral_mos, soft_flought_mos, hard_flought_mos | local parent_mos, sister_mos, soft_child_mos, hard_child_mos, neutral_mos, soft_flought_mos, hard_flought_mos | ||
parent_mos = mos. | parent_mos = mos.parent(input_mos) | ||
sister_mos = mos. | sister_mos = mos.sister(input_mos) | ||
soft_child_mos, hard_child_mos = mos. | soft_child_mos, hard_child_mos = mos.children(input_mos) | ||
neutral_mos = mos. | neutral_mos = mos.neutralized(input_mos) | ||
soft_flought_mos, hard_flought_mos = mos. | soft_flought_mos, hard_flought_mos = mos.interleaved(input_mos) | ||
-- Produce links to those relatives; parent and sister links have extra | -- Produce links to those relatives; parent and sister links have extra | ||