From 0f81c4deaf7bbc50a96bb4628595b76b34467a12 Mon Sep 17 00:00:00 2001 From: Ian Farmer Date: Mon, 3 Sep 2007 06:00:37 +0000 Subject: [PATCH] Fix typo and add TODO comment. --- src/main/java/lua/value/LTable.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/lua/value/LTable.java b/src/main/java/lua/value/LTable.java index 0df1de0e..6b8c6772 100644 --- a/src/main/java/lua/value/LTable.java +++ b/src/main/java/lua/value/LTable.java @@ -5,7 +5,7 @@ import lua.VM; /** * Simple implementation of table structure for Lua VM. Maintains both an array - * part and a hash part. Does not attempt to acheive the same performance as the + * part and a hash part. Does not attempt to achieve the same performance as the * C version. * * Java code can put values in the table or get values out (bypassing the @@ -15,6 +15,9 @@ import lua.VM; * * remove() methods are private: setting a key's value to nil is the correct way * to remove an entry from the table. + * + * TODO: Support for weak tables has to be shoehorned in here somehow. + * */ public class LTable extends LValue {