diff --git a/src/core/org/luaj/vm2/LuaTable.java b/src/core/org/luaj/vm2/LuaTable.java index d95e261c..c0505c90 100644 --- a/src/core/org/luaj/vm2/LuaTable.java +++ b/src/core/org/luaj/vm2/LuaTable.java @@ -25,23 +25,23 @@ import java.lang.ref.WeakReference; import java.util.Vector; /** - * Subclass of {@link LuaValue} for representing lua tables. + * Subclass of {@link LuaValue} for representing lua tables. *

* Almost all API's implemented in {@link LuaTable} are defined and documented in {@link LuaValue}. *

* If a table is needed, the one of the type-checking functions can be used such as - * {@link #istable()}, + * {@link #istable()}, * {@link #checktable()}, or - * {@link #opttable(LuaTable)} + * {@link #opttable(LuaTable)} *

- * The main table operations are defined on {@link LuaValue} + * The main table operations are defined on {@link LuaValue} * for getting and setting values with and without metatag processing: *

*

* To iterate over key-value pairs from Java, use @@ -56,7 +56,7 @@ import java.util.Vector; * }} * *

- * As with other types, {@link LuaTable} instances should be constructed via one of the table constructor + * As with other types, {@link LuaTable} instances should be constructed via one of the table constructor * methods on {@link LuaValue}: *