Fix typo in comments

This commit is contained in:
Pieter Vander Vennet 2022-10-27 13:35:17 +02:00
parent 717d0a9514
commit e9e53ac8b6

View file

@ -14,6 +14,6 @@ function if_then_else_dotted(conditionf, thnf, elsef, arg)
if (condition) then
return applyIfNeeded(thnf, arg)
else
return applyIfNeeded(elsef, arg) -- if no third parameter is given, 'els' will be nil
return applyIfNeeded(elsef, arg) -- if no third parameter is given, 'else' will be nil
end
end