diff --git a/user_guide/database/table_data.html b/user_guide/database/table_data.html
index f3df176..299e6dc 100644
--- a/user_guide/database/table_data.html
+++ b/user_guide/database/table_data.html
@@ -62,15 +62,17 @@
 <!-- START CONTENT -->

 <div id="content">

 

+

+

 <h1>Table Data</h1>

 

 <p>These functions let you fetch table information.</p>

 

-<h2>$this->db->tables();</h2>

+<h2>$this->db->list_tables();</h2>

 

 <p>Returns an array containing the names of all the tables in the database you are currently connected to.  Example:</p>

 

-<code>$tables = $this->db->tables()<br />

+<code>$tables = $this->db->list_tables()<br />

 <br />

 foreach ($tables as $table)<br />

 {<br />