diff --git a/system/libraries/Unit_test.php b/system/libraries/Unit_test.php
index bf50350..b2f4bf8 100644
--- a/system/libraries/Unit_test.php
+++ b/system/libraries/Unit_test.php
@@ -223,9 +223,9 @@
 	 * @params	string
 	 * @return	void
 	 */	
-	function set_template($tempalte)
+	function set_template($template)
 	{
-		$this->_template = $tempalte;
+		$this->_template = $template;
 	}
 	
 	// --------------------------------------------------------------------
diff --git a/user_guide/general/changelog.html b/user_guide/general/changelog.html
index eebd912..b8a399c 100644
--- a/user_guide/general/changelog.html
+++ b/user_guide/general/changelog.html
@@ -71,7 +71,7 @@
 <li>Added <a href="hooks.html">Hooks</a> feature, enabling you to tap into and modify the inner workings of the framework without hacking the core files.</li>

 <li>Added the ability to organize controller files <a href="controllers.html">into sub-folders</a>.  Kudos to Marco for <a href="http://www.codeigniter.com/forums/viewthread/627/">suggesting</a> this (and the next two) feature.</li>

 <li>Added regular expressions support for <a href="routing.html">routing rules</a>.</li>

-<li>Added the ability to <a href="controllers.html">remap function calls</a> withing your controllers.</li>

+<li>Added the ability to <a href="controllers.html">remap function calls</a> within your controllers.</li>

 <li>Added the ability to <a href="core_classes.html">replace core system classes</a> with your own classes.</li>

 <li>Added support for % character in URL.</li>

 <li>Added the ability to supply full URLs using the <a href="../helpers/url_helper.html">anchor()</a> helper function.</li>

@@ -111,6 +111,7 @@
 <li>Fixed an incorrectly named variable in the Validation class.</li>

 <li>Fixed an incorrectly named variable in the URI class.</li>

 <li>Fixed a bug in the config class that was preventing the base URL from being called properly.</li>

+<li>Fixed a bug in the validation class that was not permitting callbacks if the form field was empty.</li>

 <li>Fixed some MS SQL bugs.</li>

 <li>Fixed some doc typos.</li>

 </ul>