summaryrefslogtreecommitdiffstats
path: root/user_guide
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-09 23:39:48 +0200
committeradmin <devnull@localhost>2006-10-09 23:39:48 +0200
commit8d3f977d2c1d4dc01a72c0add3b14ffc73a54762 (patch)
treea3fd9db93988cc2bd069c63e56bdfc5dd475d4a7 /user_guide
parentdaaa0c8403a80d325d3ce2b85c5be62067a3854b (diff)
Diffstat (limited to 'user_guide')
-rw-r--r--user_guide/general/changelog.html3
-rw-r--r--user_guide/libraries/unit_testing.html2
2 files changed, 2 insertions, 3 deletions
diff --git a/user_guide/general/changelog.html b/user_guide/general/changelog.html
index f4e271d4e..2a871acf5 100644
--- a/user_guide/general/changelog.html
+++ b/user_guide/general/changelog.html
@@ -64,7 +64,7 @@ Change Log
<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 @@ Change Log
<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 aa7475870..9951c824d 100644
--- a/user_guide/libraries/unit_testing.html
+++ b/user_guide/libraries/unit_testing.html
@@ -76,7 +76,7 @@ to determine if it is producing the correct data type and result.
<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>