aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/lua/newobject2_runme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/lua/newobject2_runme.lua')
-rw-r--r--Examples/test-suite/lua/newobject2_runme.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/lua/newobject2_runme.lua b/Examples/test-suite/lua/newobject2_runme.lua
index cf6c87ae7..748c95372 100644
--- a/Examples/test-suite/lua/newobject2_runme.lua
+++ b/Examples/test-suite/lua/newobject2_runme.lua
@@ -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)