Misc. typos

found via `codespell` and `grep`
This commit is contained in:
luz.paz 2018-05-14 11:00:52 -04:00 committed by luz paz
commit 60dfa31a67
90 changed files with 155 additions and 155 deletions

View file

@ -1,8 +1,8 @@
require("import") -- the import fn
import("newobject2",true) -- import code
foo1 = newobject2.makeFoo() -- lua doesnt yet support static fns properly
assert(newobject2.fooCount() == 1) -- lua doesnt yet support static fns properly
foo1 = newobject2.makeFoo() -- lua doesn't yet support static fns properly
assert(newobject2.fooCount() == 1) -- lua doesn't yet support static fns properly
foo2 = newobject2.makeFoo()
assert(newobject2.fooCount() == 2)