diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 593a1f2..1d48e12 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -85,6 +85,7 @@
 <li>Added <a href="./database/helpers.html">$this->db->platform()</a> function</li>

 <li>Added new <a href="./helpers/file_helper.html">File Helper</a>:  get_filenames()</li>

 <li>Added new helper:  <a href="./helpers/smiley_helper.html">Smiley Helper</a></li>

+<li>Added support for &lt;ul> and &lt;ol> lists in the  <a href="./helpers/html_helper.html">HTML Helper</a></li>

 <li>Added more thorough initialization in the upload class so that all class variables are reset.</li>

 <li>Added "is_numeric" to validation, which uses the native PHP is_numeric function.</li>

 <li>Improved the URI handler to make it more reliable when the $config['uri_protocol'] item is set to AUTO.</li>

diff --git a/user_guide/installation/upgrade_150.html b/user_guide/installation/upgrade_150.html
index 828dfd4..6ebc331 100644
--- a/user_guide/installation/upgrade_150.html
+++ b/user_guide/installation/upgrade_150.html
@@ -76,6 +76,7 @@
 <ul>

 

 <li><dfn>application/config/user_agents.php</dfn> (new file for 1.5)</li>

+<li><dfn>application/config/smileys.php</dfn> (new file for 1.5)</li>

 <li><dfn>codeigniter/</dfn></li>

 <li><dfn>database/</dfn> (new folder for 1.5. Replaces the "drivers" folder)</li>

 <li><dfn>helpers/</dfn></li>

diff --git a/user_guide/libraries/table.html b/user_guide/libraries/table.html
index 715848a..410bd40 100644
--- a/user_guide/libraries/table.html
+++ b/user_guide/libraries/table.html
@@ -248,11 +248,30 @@
 $this->table->set_empty("&amp;nbsp;");

 </code>

 

-<h2>$this->table->clear_data()</h2>

+<h2>$this->table->clear()</h2>

 

 <p>Lets you clear the table heading and row data.  If you need to show multiple tables with different data you should

-to call this function after each table has been generated to empty the previous table information.</p>

+to call this function after each table has been generated to empty the previous table information. Example:</p>

 

+<code>

+$this->load->library('table');<br />

+<br />

+$this->table->set_heading('Name', 'Color', 'Size');<br />

+$this->table->add_row('Fred', 'Blue', 'Small');<br />

+$this->table->add_row('Mary', 'Red', 'Large');<br />

+$this->table->add_row('John', 'Green', 'Medium');<br />

+<br />

+echo $this->table->generate();<br />

+<br />

+<kbd>$this->table->clear();</kbd><br />

+<br />

+$this->table->set_heading('Name', 'Day', 'Delivery');<br />

+$this->table->add_row('Fred', 'Wednesday', 'Express');<br />

+$this->table->add_row('Mary', 'Monday', 'Air');<br />

+$this->table->add_row('John', 'Saturday', 'Overnight');<br />

+<br />

+echo $this->table->generate();

+</code>

 

 </div>

 <!-- END CONTENT -->

diff --git a/user_guide/overview/features.html b/user_guide/overview/features.html
index 44ca4b1..5d8ae73 100644
--- a/user_guide/overview/features.html
+++ b/user_guide/overview/features.html
@@ -81,22 +81,26 @@
 <li>Email Sending Class. Supports Attachments, HTML/Text email, multiple protocols (sendmail, SMTP, and Mail) and more.</li>

 <li>Image Manipulation Library (cropping, resizing, rotating, etc.).  Supports GD, ImageMagick, and NetPBM</li>

 <li>File Uploading Class</li>

+<li>FTP Class</li>

 <li>Localization</li>

 <li>Pagination</li>

 <li>Data Encryption</li>

 <li>Benchmarking</li>

 <li>Full Page Caching</li>

 <li>Error Logging</li>

+<li>Application Profiling</li>

 <li>Scaffolding</li>

 <li>Calendaring Class</li>

+<li>User Agent Class</li>

+<li>Zip Encoding Class</li>

 <li>Template Engine Class</li>

 <li>Trackback Class</li>

 <li>XML-RPC Library</li>

 <li>Unit Testing Class</li>

 <li>Search-engine Friendly URLs</li>

 <li>Flexible URI Routing</li>

-<li>Library of "helper" functions</li>

-<li>Plugin Support</li>

+<li>Support for Hooks, Class Extensions, and Plugins</li>

+<li>Large library of "helper" functions</li>

 </ul>