diff --git a/user_guide/general/changelog.html b/user_guide/general/changelog.html
index 2a871ac..732e1c7 100644
--- a/user_guide/general/changelog.html
+++ b/user_guide/general/changelog.html
@@ -82,9 +82,9 @@
 <li>Added <a href="../database/results.html">$query->free_result()</a> to database class.</li>

 <li>Added <a href="../database/fields.html">$query->field_names()</a> function to database class</li>

 <li>Added <a href="../database/helpers.html">$this->db->platform()</a> function</li>

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

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

-<li>Moved most of the functions in the Controller class into the Loader class, allowing fewer reserved function names for controllers.</li>

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

+<li>Moved most of the functions in the Controller class into the Loader class, allowing fewer reserved function names for controllers when running under PHP 5.</li>

 <li>Updated the DB Result class to return an empty array when $query->result() doesn't produce a result.</li>

 <li>Updated the <dfn>input->cookie()</dfn> and <dfn>input->post()</dfn> functions in <a href="../libraries/input.html">Input Class</a> to permit arrays contained cookies that are arrays to be run through the XSS filter.</li>

 <li>Fixed a bug in the Email class related to SMTP Helo data.</li>

diff --git a/user_guide/general/creating_libraries.html b/user_guide/general/creating_libraries.html
index 73bc4d6..fb3f417 100644
--- a/user_guide/general/creating_libraries.html
+++ b/user_guide/general/creating_libraries.html
@@ -250,8 +250,11 @@
 

 <code>$this->load->library('<kbd>my_</kbd>email');</code>

 

+<p>Once loaded you will use the class variable as you normally would for the class you are extending.  In the case of 

+the email class all calls will use:

 

 

+<code>$this-><kbd>email</kbd>->some_function();</code>

 

 </div>

 <!-- END CONTENT -->