diff --git a/user_guide/general/caching.html b/user_guide/general/caching.html
index b4b3dab..f62c53d 100644
--- a/user_guide/general/caching.html
+++ b/user_guide/general/caching.html
@@ -94,7 +94,7 @@
 

 <h2>Deleting Caches</h2>

 

-<p>If you no longer wish to cache a file you can remove the caching tag and it will not longer be refreshed when it expires.  Note:

+<p>If you no longer wish to cache a file you can remove the caching tag and it will no longer be refreshed when it expires.  Note:

 Removing the tag will not delete the cache immediately.  It will have to expire normally.  If you need to remove it earlier you

 will need to manually delete it from your cache folder.</p>

 

diff --git a/user_guide/general/core_classes.html b/user_guide/general/core_classes.html
index f7e308a..92c35c7 100644
--- a/user_guide/general/core_classes.html
+++ b/user_guide/general/core_classes.html
@@ -144,6 +144,14 @@
 This allows you to substantially alter the Code Igniter core.</p>

 

 

+<h3>Setting Your Own Prefix</h3>

+

+<p>To set your own sub-class prefix, open your <dfn>application/config/config.php</dfn> file and look for this item:</p>

+

+<code>$config['subclass_prefix'] = 'MY_';</code>

+

+<p>Please note that all native Code Igniter libraries are prefixed with <kbd>CI_</kbd> so DO NOT use that as your prefix.</p>

+

 

 

 

diff --git a/user_guide/general/views.html b/user_guide/general/views.html
index 147667c..fa7f5eb 100644
--- a/user_guide/general/views.html
+++ b/user_guide/general/views.html
@@ -97,6 +97,7 @@
 

 <p>Where <var>name</var> is the name of your view file.  Note: The .php file extension does not need to be specified unless you use something other then <kbd>.php</kbd>.</p>

 

+

 <p>Now, open the controller file you made earlier called <dfn>blog.php</dfn>, and replace the echo statement with the view loading function:</p>

 

 

@@ -117,6 +118,13 @@
 

 <code>www.your-site.com/index.php/<var>blog</var>/</code>

 

+<h2>Storing Views within Sub-folders</h2>

+

+<p>Your view files can also be stored within sub-folders if you prefer that type of organization.  When doing so you will need

+to include the folder name loading the view.  Example:</p>

+

+<code>$this->load->view('<kbd>folder_name</kbd>/<var>file_name</var>');</code>

+

 

 <h2>Adding Dynamic Data to the View</h2>