Module:Guidance: Difference between revisions
Jump to navigation
Jump to search
no edit summary
imported>Pingu No edit summary |
imported>Pingu No edit summary |
||
| Line 53: | Line 53: | ||
end | end | ||
end | end | ||
if string.find(w1," and ") | if w1 ~= nil then | ||
if string.find(w1," and ") then | |||
w1 = w1.." are" | |||
else | |||
w1 = w1.." is" | |||
end | |||
end | end | ||
return w1; | return w1; | ||
| Line 74: | Line 76: | ||
end | end | ||
end | end | ||
if string.find(w2," and ") | if w2 ~= nil then | ||
if string.find(w2," and ") then | |||
w2 = w2.." are" | |||
else | |||
w2 = w2.." is" | |||
end | |||
end | end | ||
return w2; | return w2; | ||