Correct typos
This commit is contained in:
@@ -24,7 +24,7 @@ package org.luaj.vm2;
|
||||
|
||||
/**
|
||||
* Constants for lua limits and opcodes
|
||||
* @deprecatd these will all move to LuaC or LoadState or DumpState
|
||||
* @deprecated these will all move to LuaC or LoadState or DumpState
|
||||
*/
|
||||
public class Lua {
|
||||
/** version is supplied by ant build task */
|
||||
|
||||
@@ -556,12 +556,12 @@ public class LuaTable extends LuaValue {
|
||||
array[j] = a;
|
||||
}
|
||||
|
||||
/** @deprecate - count via iteration instead */
|
||||
/** @deprecated - count via iteration instead */
|
||||
public int keyCount() {
|
||||
return keys().length;
|
||||
}
|
||||
|
||||
/** @deprecate - use next() instead */
|
||||
/** @deprecated - use next() instead */
|
||||
public LuaValue[] keys() {
|
||||
Vector l = new Vector();
|
||||
LuaValue k = LuaValue.NIL;
|
||||
|
||||
Reference in New Issue
Block a user