The documentation has an example in Lua that does not work.
It should be:
In other words, it lacked the pairs().
It should be:
result = SpellCheck (
"Twas brillig, and the slithy toves Did gyre and gimble in the the wabe")
print (type (result))
if result == nil then
Note "Spell check not available"
elseif result == 0 then
Note "No spelling errors"
else
for _, v in pairs(result) do print (v) end
endIn other words, it lacked the pairs().