diff --git a/user_guide/general/changelog.html b/user_guide/general/changelog.html
index f4e271d..2a871ac 100644
--- a/user_guide/general/changelog.html
+++ b/user_guide/general/changelog.html
@@ -64,7 +64,7 @@
 

 

 <h2>Version 1.5.0</h2>

-<p>Release Date: Ocotber 15, 2006</p>

+<p>Release Date: October 15, 2006</p>

 

 <ul>

 <li>Added <a href="../database/utilities.html">DB utility class</a>, permitting DB backups, CVS or XML files from DB results, and various other functions.</li>

@@ -91,7 +91,6 @@
 <li>Fixed a bug in the validation class.</li>

 <li><strong>Deprecated "init" folder</strong>.  Initialization happens automatically now.  <a href="creating_libraries.html">Please see documentation</a>.</li>

 <li><strong>Deprecated</strong> $this->db->field_names()  USE  $this->db->list_fields()</li>

-<li><strong>Deprecated</strong> $this->load->library('unit_test').  USE $this->load->library('unit')</li>

 

 </ul>

 

diff --git a/user_guide/libraries/unit_testing.html b/user_guide/libraries/unit_testing.html
index aa74758..9951c82 100644
--- a/user_guide/libraries/unit_testing.html
+++ b/user_guide/libraries/unit_testing.html
@@ -76,7 +76,7 @@
 

 <p>Like most other classes in Code Igniter, the Unit Test class is initialized in your controller using the <dfn>$this->load->library</dfn> function:</p>

 

-<code>$this->load->library('unit');</code>

+<code>$this->load->library('unit_test');</code>

 <p>Once loaded, the Unit Test object will be available using: <dfn>$this->unit</dfn></p>

 <p>You can also set your own class variable name.  Please see the <a href="loader.html">Loader Class</a> for more info.</p>