diff --git a/user_guide/database/fields.html b/user_guide/database/fields.html
index 5c872ec..260cd22 100644
--- a/user_guide/database/fields.html
+++ b/user_guide/database/fields.html
@@ -65,17 +65,14 @@
 <h1>Field Data</h1>

 

 

-<h2>Retrieving Field Names</h2>

-<p>Sometimes it's helpful to gather the field names for a particular table or with a paritcular query result.</p>

-

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

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

 <p>Returns an array containing the field names. This query can be called two ways:</p>

 

 

 <p>1. You can supply the table name and call it from the <dfn>$this->db-></dfn> object:</p>

 

 <code>

-$fields = $this->db->field_names('table_name');<br /><br />

+$fields = $this->db->list_fields('table_name');<br /><br />

 

 foreach ($fields as $field)<br />

 {<br />

@@ -90,7 +87,7 @@
 $query = $this->db->query('SELECT * FROM some_table');

 <br /><br />

 

-foreach ($query->field_names() as $field)<br />

+foreach ($query->list_fields() as $field)<br />

 {<br />

 &nbsp;&nbsp;&nbsp;echo $field;<br />

 }

@@ -98,13 +95,10 @@
 

 

 

-

-

-<h2>Retrieving Field MetaData</h2>

-<p>Sometimes it's helpful to gather the field names or other metadata, like the column type, max length, etc.</p>

-

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

 <p>Returns an array of objects containing field information.</p>

+<p>Sometimes it's helpful to gather the field names or other metadata, like the column type, max length, etc.</p>

+

 

 <p class="important">Note: Not all databases provide meta-data.</p>