From b5c5236a339c46d459ff99170d6df25181e392f1 Mon Sep 17 00:00:00 2001 From: James Roseborough Date: Sun, 13 Nov 2011 05:32:32 +0000 Subject: [PATCH] Fix javadoc comments. --- src/core/org/luaj/vm2/LuaTable.java | 2 +- src/core/org/luaj/vm2/LuaValue.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/org/luaj/vm2/LuaTable.java b/src/core/org/luaj/vm2/LuaTable.java index a9fcc832..93cf9980 100644 --- a/src/core/org/luaj/vm2/LuaTable.java +++ b/src/core/org/luaj/vm2/LuaTable.java @@ -52,7 +52,7 @@ import java.util.Vector; * break; * LuaValue v = n.arg(2) * process( k, v ) - * } + * }} * *

* As with other types, {@link LuaTable} instances should be constructed via one of the table constructor diff --git a/src/core/org/luaj/vm2/LuaValue.java b/src/core/org/luaj/vm2/LuaValue.java index de3cbbd7..c2f86632 100644 --- a/src/core/org/luaj/vm2/LuaValue.java +++ b/src/core/org/luaj/vm2/LuaValue.java @@ -1305,7 +1305,7 @@ public class LuaValue extends Varargs { * break; * LuaValue v = n.arg(2) * process( k, v ) - * } + * }} * @param index {@link LuaInteger} value identifying a key to start from, * or {@link NIL} to start at the beginning * @return {@link Varargs} containing {key,value} for the next entry,