diff --git a/docs/object.md b/docs/object.md
index 5f79eaf6..073ffcd4 100644
--- a/docs/object.md
+++ b/docs/object.md
@@ -250,8 +250,8 @@ call([](types.md) func_name, [](types.md) | [](#getdecals)
getLuaScript() | Get a Lua script as a string from the entity. | [](types.md) |
getSnapPoints() | Returns a table of sub-tables, each sub-table representing one snap point. | [](types.md) | [](#getsnappoints)
-getTable([](types.md) table_name) | Data value of a variable in another Object's script. Can only return a table. | [](types.md) |
-getVar([](types.md) var_name) | Data value of a variable in another entity's script. Cannot return a table. | [](types.md) |
+getTable([](types.md) table_name) | Data value of a variable in another Object's script. Can only return a table. This method was used because getVar could previously not return a table.| [](types.md) |
+getVar([](types.md) var_name) | Data value of a variable in another entity's script. | [](types.md) |
getVectorLines() | Returns Table of data representing the current Vector Lines on this entity. See [setVectorLines](#setvectorlines) for table format.| [](types.md) |
setDecals([](types.md) parameters) | Sets which decals are on an object. This removes other decals already present, and can remove all decals as well. | [](types.md) | [](#setdecals)
setLuaScript([](types.md) script) | Input a string as an entity's Lua script. Generally only used after spawning a new Object. | [](types.md) |